massive update, probably broken
[dotfiles/.git] / .config / coc / extensions / node_modules / coc-prettier / node_modules / core-js / modules / es.typed-array.map.js
1 'use strict';
2 var ArrayBufferViewCore = require('../internals/array-buffer-view-core');
3 var $map = require('../internals/array-iteration').map;
4 var typedArraySpeciesConstructor = require('../internals/typed-array-species-constructor');
5
6 var aTypedArray = ArrayBufferViewCore.aTypedArray;
7 var exportTypedArrayMethod = ArrayBufferViewCore.exportTypedArrayMethod;
8
9 // `%TypedArray%.prototype.map` method
10 // https://tc39.es/ecma262/#sec-%typedarray%.prototype.map
11 exportTypedArrayMethod('map', function map(mapfn /* , thisArg */) {
12   return $map(aTypedArray(this), mapfn, arguments.length > 1 ? arguments[1] : undefined, function (O, length) {
13     return new (typedArraySpeciesConstructor(O))(length);
14   });
15 });