Page Menu
Home
Software Heritage
Search
Configure Global Search
Log In
Files
F8394475
es.array.of.js
No One
Temporary
Actions
View File
Edit File
Delete File
View Transforms
Subscribe
Mute Notifications
Award Token
Flag For Later
Size
895 B
Subscribers
None
es.array.of.js
View Options
'use strict'
;
var
$
=
require
(
'../internals/export'
);
var
fails
=
require
(
'../internals/fails'
);
var
isConstructor
=
require
(
'../internals/is-constructor'
);
var
createProperty
=
require
(
'../internals/create-property'
);
var
$Array
=
Array
;
var
ISNT_GENERIC
=
fails
(
function
()
{
function
F
()
{
/* empty */
}
// eslint-disable-next-line es-x/no-array-of -- safe
return
!
(
$Array
.
of
.
call
(
F
)
instanceof
F
);
});
// `Array.of` method
// https://tc39.es/ecma262/#sec-array.of
// WebKit Array.of isn't generic
$
({
target
:
'Array'
,
stat
:
true
,
forced
:
ISNT_GENERIC
},
{
of
:
function
of
(
/* ...args */
)
{
var
index
=
0
;
var
argumentsLength
=
arguments
.
length
;
var
result
=
new
(
isConstructor
(
this
)
?
this
:
$Array
)(
argumentsLength
);
while
(
argumentsLength
>
index
)
createProperty
(
result
,
index
,
arguments
[
index
++
]);
result
.
length
=
argumentsLength
;
return
result
;
}
});
File Metadata
Details
Attached
Mime Type
text/plain
Expires
Wed, Jun 4, 7:25 PM (5 d, 10 h ago)
Storage Engine
blob
Storage Format
Raw Data
Storage Handle
3350767
Attached To
rDWAPPS Web applications
Event Timeline
Log In to Comment