UNPKG

731 BJavaScriptView Raw
1'use strict';
2var ArrayBufferViewCore = require('../internals/array-buffer-view-core');
3var $map = require('../internals/array-iteration').map;
4var speciesConstructor = require('../internals/species-constructor');
5
6var aTypedArray = ArrayBufferViewCore.aTypedArray;
7var aTypedArrayConstructor = ArrayBufferViewCore.aTypedArrayConstructor;
8
9// `%TypedArray%.prototype.map` method
10// https://tc39.github.io/ecma262/#sec-%typedarray%.prototype.map
11ArrayBufferViewCore.exportProto('map', function map(mapfn /* , thisArg */) {
12 return $map(aTypedArray(this), mapfn, arguments.length > 1 ? arguments[1] : undefined, function (O, length) {
13 return new (aTypedArrayConstructor(speciesConstructor(O, O.constructor)))(length);
14 });
15});