main
Last change
on this file since 79a0317 was 79a0317, checked in by stefan toskovski <stefantoska84@…>, 3 days ago |
F4 Finalna Verzija
|
-
Property mode
set to
100644
|
File size:
527 bytes
|
Line | |
---|
1 | 'use strict';
|
---|
2 | var $ = require('../internals/export');
|
---|
3 | var $findLast = require('../internals/array-iteration-from-last').findLast;
|
---|
4 | var addToUnscopables = require('../internals/add-to-unscopables');
|
---|
5 |
|
---|
6 | // `Array.prototype.findLast` method
|
---|
7 | // https://tc39.es/ecma262/#sec-array.prototype.findlast
|
---|
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 |
|
---|
14 | addToUnscopables('findLast');
|
---|
Note:
See
TracBrowser
for help on using the repository browser.