Sha256: 903e9e6a96f946767781bb535078c7cdfc2b8794830c2fb3c0ca885dceb553bd

Contents?: true

Size: 594 Bytes

Versions: 6

Compression:

Stored size: 594 Bytes

Contents

'use strict';
var ArrayBufferViewCore = require('../internals/array-buffer-view-core');
var $copyWithin = require('../internals/array-copy-within');

var aTypedArray = ArrayBufferViewCore.aTypedArray;
var exportTypedArrayMethod = ArrayBufferViewCore.exportTypedArrayMethod;

// `%TypedArray%.prototype.copyWithin` method
// https://tc39.github.io/ecma262/#sec-%typedarray%.prototype.copywithin
exportTypedArrayMethod('copyWithin', function copyWithin(target, start /* , end */) {
  return $copyWithin.call(aTypedArray(this), target, start, arguments.length > 2 ? arguments[2] : undefined);
});

Version data entries

6 entries across 6 versions & 3 rubygems

Version Path
optimacms-0.1.61 spec/dummy/node_modules/core-js/modules/es.typed-array.copy-within.js
tang-0.2.1 spec/tang_app/node_modules/core-js/modules/es.typed-array.copy-within.js
tang-0.2.0 spec/tang_app/node_modules/core-js/modules/es.typed-array.copy-within.js
tang-0.1.0 spec/tang_app/node_modules/core-js/modules/es.typed-array.copy-within.js
tang-0.0.9 spec/tang_app/node_modules/core-js/modules/es.typed-array.copy-within.js
enju_library-0.3.8 spec/dummy/node_modules/core-js/modules/es.typed-array.copy-within.js