Spaces:
Runtime error
Runtime error
File size: 223 Bytes
1fa8efd | 1 2 3 4 5 6 7 | // 9.4.2.3 ArraySpeciesCreate(originalArray, length)
var speciesConstructor = require('./_array-species-constructor');
module.exports = function (original, length) {
return new (speciesConstructor(original))(length);
};
|