core-js
Version:
Standard library
18 lines (17 loc) • 519 B
JavaScript
;
var $def = require('./$.def');
// WebKit Array.of isn't generic
$def($def.S + $def.F * require('./$.fails')(function(){
function F(){}
return !(Array.of.call(F) instanceof F);
}), 'Array', {
// 22.1.2.3 Array.of( ...items)
of: function of(/* ...args */){
var index = 0
, length = arguments.length
, result = new (typeof this == 'function' ? this : Array)(length);
while(length > index)result[index] = arguments[index++];
result.length = length;
return result;
}
});