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

7 lines
229 B
JavaScript
Raw Normal View History

2023-10-03 11:14:36 +08:00
// 9.4.2.3 ArraySpeciesCreate(originalArray, length)
var speciesConstructor = require('./_array-species-constructor');
module.exports = function (original, length) {
return new (speciesConstructor(original))(length);
};