UNPKG

931 BJavaScriptView Raw
1'use strict';
2var ArrayBufferViewCore = require('../internals/array-buffer-view-core');
3var speciesConstructor = require('../internals/species-constructor');
4var fails = require('../internals/fails');
5
6var aTypedArray = ArrayBufferViewCore.aTypedArray;
7var aTypedArrayConstructor = ArrayBufferViewCore.aTypedArrayConstructor;
8var $slice = [].slice;
9
10var FORCED = fails(function () {
11 // eslint-disable-next-line no-undef
12 new Int8Array(1).slice();
13});
14
15// `%TypedArray%.prototype.slice` method
16// https://tc39.github.io/ecma262/#sec-%typedarray%.prototype.slice
17ArrayBufferViewCore.exportProto('slice', function slice(start, end) {
18 var list = $slice.call(aTypedArray(this), start, end);
19 var C = speciesConstructor(this, this.constructor);
20 var index = 0;
21 var length = list.length;
22 var result = new (aTypedArrayConstructor(C))(length);
23 while (length > index) result[index] = list[index++];
24 return result;
25}, FORCED);