_array-species-create.js 223 B

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