massive update, probably broken
[dotfiles/.git] / .config / coc / extensions / node_modules / coc-prettier / node_modules / core-js / internals / typed-array-from-species-and-list.js
1 var arrayFromConstructorAndList = require('../internals/array-from-constructor-and-list');
2 var typedArraySpeciesConstructor = require('../internals/typed-array-species-constructor');
3
4 module.exports = function (instance, list) {
5   return arrayFromConstructorAndList(typedArraySpeciesConstructor(instance), list);
6 };