Opal-Estate-Pro/node_modules/core-js/modules/_array-species-create.js
2019-09-13 11:27:52 +07:00

7 lines
223 B
JavaScript

// 9.4.2.3 ArraySpeciesCreate(originalArray, length)
var speciesConstructor = require('./_array-species-constructor');
module.exports = function (original, length) {
return new (speciesConstructor(original))(length);
};