aboutsummaryrefslogtreecommitdiff
path: root/node_modules/core-js/modules/es.array.find.js
diff options
context:
space:
mode:
Diffstat (limited to 'node_modules/core-js/modules/es.array.find.js')
-rw-r--r--node_modules/core-js/modules/es.array.find.js24
1 files changed, 24 insertions, 0 deletions
diff --git a/node_modules/core-js/modules/es.array.find.js b/node_modules/core-js/modules/es.array.find.js
new file mode 100644
index 0000000..ad37cc7
--- /dev/null
+++ b/node_modules/core-js/modules/es.array.find.js
@@ -0,0 +1,24 @@
+'use strict';
+var $ = require('../internals/export');
+var $find = require('../internals/array-iteration').find;
+var addToUnscopables = require('../internals/add-to-unscopables');
+var arrayMethodUsesToLength = require('../internals/array-method-uses-to-length');
+
+var FIND = 'find';
+var SKIPS_HOLES = true;
+
+var USES_TO_LENGTH = arrayMethodUsesToLength(FIND);
+
+// Shouldn't skip holes
+if (FIND in []) Array(1)[FIND](function () { SKIPS_HOLES = false; });
+
+// `Array.prototype.find` method
+// https://tc39.github.io/ecma262/#sec-array.prototype.find
+$({ target: 'Array', proto: true, forced: SKIPS_HOLES || !USES_TO_LENGTH }, {
+ find: function find(callbackfn /* , that = undefined */) {
+ return $find(this, callbackfn, arguments.length > 1 ? arguments[1] : undefined);
+ }
+});
+
+// https://tc39.github.io/ecma262/#sec-array.prototype-@@unscopables
+addToUnscopables(FIND);