'use strict';
|
var arrayWith = require('../internals/array-with');
|
var ArrayBufferViewCore = require('../internals/array-buffer-view-core');
|
|
var aTypedArray = ArrayBufferViewCore.aTypedArray;
|
var exportTypedArrayMethod = ArrayBufferViewCore.exportTypedArrayMethod;
|
var TYPED_ARRAY_CONSTRUCTOR = ArrayBufferViewCore.TYPED_ARRAY_CONSTRUCTOR;
|
|
// `%TypedArray%.prototype.with` method
|
// https://tc39.es/proposal-change-array-by-copy/#sec-%typedarray%.prototype.with
|
exportTypedArrayMethod('with', { 'with': function (index, value) {
|
return arrayWith(aTypedArray(this), this[TYPED_ARRAY_CONSTRUCTOR], index, value);
|
} }['with']);
|