mirror of
https://github.com/idanoo/GoScrobble.git
synced 2024-11-22 16:35:14 +00:00
15 lines
562 B
JavaScript
15 lines
562 B
JavaScript
'use strict';
|
|
var $ = require('../internals/export');
|
|
var $findLastIndex = require('../internals/array-iteration-from-last').findLastIndex;
|
|
var addToUnscopables = require('../internals/add-to-unscopables');
|
|
|
|
// `Array.prototype.findLastIndex` method
|
|
// https://github.com/tc39/proposal-array-find-from-last
|
|
$({ target: 'Array', proto: true }, {
|
|
findLastIndex: function findLastIndex(callbackfn /* , that = undefined */) {
|
|
return $findLastIndex(this, callbackfn, arguments.length > 1 ? arguments[1] : undefined);
|
|
}
|
|
});
|
|
|
|
addToUnscopables('findLastIndex');
|