mirror of
https://github.com/idanoo/GoScrobble.git
synced 2024-11-24 09:25:15 +00:00
25 lines
832 B
JavaScript
25 lines
832 B
JavaScript
|
'use strict';
|
||
|
var $ = require('../internals/export');
|
||
|
var fails = require('../internals/fails');
|
||
|
var createProperty = require('../internals/create-property');
|
||
|
|
||
|
var ISNT_GENERIC = fails(function () {
|
||
|
function F() { /* empty */ }
|
||
|
// eslint-disable-next-line es/no-array-of -- required for testing
|
||
|
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 (typeof this == 'function' ? this : Array)(argumentsLength);
|
||
|
while (argumentsLength > index) createProperty(result, index, arguments[index++]);
|
||
|
result.length = argumentsLength;
|
||
|
return result;
|
||
|
}
|
||
|
});
|