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