summaryrefslogtreecommitdiff
path: root/node_modules/core-js/modules/_array-species-create.js
blob: cbd18bc6cce2036db7a341194a884f48e898da81 (plain)
1
2
3
4
5
6
// 9.4.2.3 ArraySpeciesCreate(originalArray, length)
var speciesConstructor = require('./_array-species-constructor');

module.exports = function(original, length){
  return new (speciesConstructor(original))(length);
};