source: node_modules/core-js-pure/modules/es.array.find-last-index.js

main
Last change on this file was d24f17c, checked in by Aleksandar Panovski <apano77@…>, 15 months ago

Initial commit

  • Property mode set to 100644
File size: 567 bytes
RevLine 
[d24f17c]1'use strict';
2var $ = require('../internals/export');
3var $findLastIndex = require('../internals/array-iteration-from-last').findLastIndex;
4var addToUnscopables = require('../internals/add-to-unscopables');
5
6// `Array.prototype.findLastIndex` method
7// https://tc39.es/ecma262/#sec-array.prototype.findlastindex
8$({ target: 'Array', proto: true }, {
9 findLastIndex: function findLastIndex(callbackfn /* , that = undefined */) {
10 return $findLastIndex(this, callbackfn, arguments.length > 1 ? arguments[1] : undefined);
11 }
12});
13
14addToUnscopables('findLastIndex');
Note: See TracBrowser for help on using the repository browser.