All Downloads are FREE. Search and download functionalities are using the official Maven repository.

node_modules.core-js.modules._array-species-create.js Maven / Gradle / Ivy

The newest version!
// 9.4.2.3 ArraySpeciesCreate(originalArray, length)
var speciesConstructor = require('./_array-species-constructor');

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




© 2015 - 2024 Weber Informatics LLC | Privacy Policy