backoffice/node_modules/core-js/modules/_array-species-create.js

6 lines
220 B
JavaScript
Raw Normal View History

2020-02-06 10:09:39 +00:00
// 9.4.2.3 ArraySpeciesCreate(originalArray, length)
var speciesConstructor = require('./_array-species-constructor');
module.exports = function(original, length){
return new (speciesConstructor(original))(length);
};