aboutsummaryrefslogtreecommitdiff
path: root/node_modules/core-js/modules/es.array.from.js
blob: 5c21cbca97887cd2bef2204abb66c7ea07fe33a9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
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
});