Iapetus / frontend /node_modules /core-js /internals /array-species-create.js
EphAsad's picture
Upload 9972 files
01fdca8 verified
Raw
History Blame Contribute Delete
327 Bytes
'use strict';
var arraySpeciesConstructor = require('../internals/array-species-constructor');
// `ArraySpeciesCreate` abstract operation
// https://tc39.es/ecma262/#sec-arrayspeciescreate
module.exports = function (originalArray, length) {
return new (arraySpeciesConstructor(originalArray))(length === 0 ? 0 : length);
};