-
-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathindex.js
28 lines (21 loc) · 753 Bytes
/
index.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
'use strict';
var define = require('define-properties');
var RequireObjectCoercible = require('es-object-atoms/RequireObjectCoercible');
var callBind = require('call-bind');
var callBound = require('call-bound');
var implementation = require('./implementation');
var getPolyfill = require('./polyfill');
var shim = require('./shim');
var $slice = callBound('Array.prototype.slice');
var polyfill = callBind.apply(getPolyfill());
var boundShim = function findIndex(array, predicate) { // eslint-disable-line no-unused-vars
RequireObjectCoercible(array);
var args = $slice(arguments, 1);
return polyfill(array, args);
};
define(boundShim, {
getPolyfill: getPolyfill,
implementation: implementation,
shim: shim
});
module.exports = boundShim;