source: trip-planner-front/node_modules/core-js/internals/typed-array-from-species-and-list.js@ 8d391a1

Last change on this file since 8d391a1 was 6a3a178, checked in by Ema <ema_spirova@…>, 3 years ago

initial commit

  • Property mode set to 100644
File size: 316 bytes
Line 
1var arrayFromConstructorAndList = require('../internals/array-from-constructor-and-list');
2var typedArraySpeciesConstructor = require('../internals/typed-array-species-constructor');
3
4module.exports = function (instance, list) {
5 return arrayFromConstructorAndList(typedArraySpeciesConstructor(instance), list);
6};
Note: See TracBrowser for help on using the repository browser.