Sha256: 578bc768ed4b5065316beae57fecebebde19e3c96b63406300c700f61aedeafe

Contents?: true

Size: 530 Bytes

Versions: 9

Compression:

Stored size: 530 Bytes

Contents

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

var aTypedArray = ArrayBufferViewCore.aTypedArray;

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

Version data entries

9 entries across 9 versions & 3 rubygems

Version Path
disco_app-0.18.0 test/dummy/node_modules/core-js/modules/es.typed-array.copy-within.js
disco_app-0.18.2 test/dummy/node_modules/core-js/modules/es.typed-array.copy-within.js
jester-data-8.0.0 node_modules/core-js/modules/es.typed-array.copy-within.js
ezii-os-5.2.1 node_modules/core-js/modules/es.typed-array.copy-within.js
ezii-os-2.0.1 node_modules/core-js/modules/es.typed-array.copy-within.js
ezii-os-1.1.0 node_modules/core-js/modules/es.typed-array.copy-within.js
ezii-os-1.0.0 node_modules/core-js/modules/es.typed-array.copy-within.js
ezii-os-0.0.0.1.0 node_modules/core-js/modules/es.typed-array.copy-within.js
ezii-os-0.0.0.0.1 node_modules/core-js/modules/es.typed-array.copy-within.js