aboutsummaryrefslogtreecommitdiff
path: root/node_modules/core-js/modules/es.array.from.js
diff options
context:
space:
mode:
Diffstat (limited to 'node_modules/core-js/modules/es.array.from.js')
-rw-r--r--node_modules/core-js/modules/es.array.from.js13
1 files changed, 0 insertions, 13 deletions
diff --git a/node_modules/core-js/modules/es.array.from.js b/node_modules/core-js/modules/es.array.from.js
deleted file mode 100644
index 5c21cbc..0000000
--- a/node_modules/core-js/modules/es.array.from.js
+++ /dev/null
@@ -1,13 +0,0 @@
-var $ = require('../internals/export');
-var from = require('../internals/array-from');
-var checkCorrectnessOfIteration = require('../internals/check-correctness-of-iteration');
-
-var INCORRECT_ITERATION = !checkCorrectnessOfIteration(function (iterable) {
- Array.from(iterable);
-});
-
-// `Array.from` method
-// https://tc39.github.io/ecma262/#sec-array.from
-$({ target: 'Array', stat: true, forced: INCORRECT_ITERATION }, {
- from: from
-});