main
Last change
on this file was 79a0317, checked in by stefan toskovski <stefantoska84@…>, 4 days ago |
F4 Finalna Verzija
|
-
Property mode
set to
100644
|
File size:
840 bytes
|
Rev | Line | |
---|
[79a0317] | 1 | 'use strict';
|
---|
| 2 | var $ = require('../internals/export');
|
---|
| 3 | var $findIndex = require('../internals/array-iteration').findIndex;
|
---|
| 4 | var addToUnscopables = require('../internals/add-to-unscopables');
|
---|
| 5 |
|
---|
| 6 | var FIND_INDEX = 'findIndex';
|
---|
| 7 | var SKIPS_HOLES = true;
|
---|
| 8 |
|
---|
| 9 | // Shouldn't skip holes
|
---|
| 10 | // eslint-disable-next-line es/no-array-prototype-findindex -- testing
|
---|
| 11 | if (FIND_INDEX in []) Array(1)[FIND_INDEX](function () { SKIPS_HOLES = false; });
|
---|
| 12 |
|
---|
| 13 | // `Array.prototype.findIndex` method
|
---|
| 14 | // https://tc39.es/ecma262/#sec-array.prototype.findindex
|
---|
| 15 | $({ target: 'Array', proto: true, forced: SKIPS_HOLES }, {
|
---|
| 16 | findIndex: function findIndex(callbackfn /* , that = undefined */) {
|
---|
| 17 | return $findIndex(this, callbackfn, arguments.length > 1 ? arguments[1] : undefined);
|
---|
| 18 | }
|
---|
| 19 | });
|
---|
| 20 |
|
---|
| 21 | // https://tc39.es/ecma262/#sec-array.prototype-@@unscopables
|
---|
| 22 | addToUnscopables(FIND_INDEX);
|
---|
Note:
See
TracBrowser
for help on using the repository browser.