source: trip-planner-front/node_modules/core-js/modules/esnext.array.find-last.js@ 6c1585f

Last change on this file since 6c1585f was 6a3a178, checked in by Ema <ema_spirova@…>, 3 years ago

initial commit

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