Page Menu
Home
Software Heritage
Search
Configure Global Search
Log In
Files
F9342838
es.array.find-last.js
No One
Temporary
Actions
View File
Edit File
Delete File
View Transforms
Subscribe
Mute Notifications
Award Token
Flag For Later
Size
527 B
Subscribers
None
es.array.find-last.js
View Options
'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'
);
File Metadata
Details
Attached
Mime Type
text/plain
Expires
Fri, Jul 4, 1:02 PM (1 w, 3 d ago)
Storage Engine
blob
Storage Format
Raw Data
Storage Handle
3298596
Attached To
rDWAPPS Web applications
Event Timeline
Log In to Comment