aboutsummaryrefslogtreecommitdiff
path: root/node_modules/core-js/modules/es.array.copy-within.js
diff options
context:
space:
mode:
Diffstat (limited to 'node_modules/core-js/modules/es.array.copy-within.js')
-rw-r--r--node_modules/core-js/modules/es.array.copy-within.js12
1 files changed, 0 insertions, 12 deletions
diff --git a/node_modules/core-js/modules/es.array.copy-within.js b/node_modules/core-js/modules/es.array.copy-within.js
deleted file mode 100644
index 1fb0dda..0000000
--- a/node_modules/core-js/modules/es.array.copy-within.js
+++ /dev/null
@@ -1,12 +0,0 @@
-var $ = require('../internals/export');
-var copyWithin = require('../internals/array-copy-within');
-var addToUnscopables = require('../internals/add-to-unscopables');
-
-// `Array.prototype.copyWithin` method
-// https://tc39.github.io/ecma262/#sec-array.prototype.copywithin
-$({ target: 'Array', proto: true }, {
- copyWithin: copyWithin
-});
-
-// https://tc39.github.io/ecma262/#sec-array.prototype-@@unscopables
-addToUnscopables('copyWithin');