Node-Red configuration
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

array-species-create.js 327B

12345678
  1. 'use strict';
  2. var arraySpeciesConstructor = require('../internals/array-species-constructor');
  3. // `ArraySpeciesCreate` abstract operation
  4. // https://tc39.es/ecma262/#sec-arrayspeciescreate
  5. module.exports = function (originalArray, length) {
  6. return new (arraySpeciesConstructor(originalArray))(length === 0 ? 0 : length);
  7. };