github-pages-deploy-action/node_modules/core-js-pure/modules/esnext.iterator.to-array.js
2020-03-06 22:45:40 -05:00

16 lines
415 B
JavaScript

'use strict';
// https://github.com/tc39/proposal-iterator-helpers
var $ = require('../internals/export');
var iterate = require('../internals/iterate');
var anObject = require('../internals/an-object');
var push = [].push;
$({ target: 'Iterator', proto: true, real: true }, {
toArray: function toArray() {
var result = [];
iterate(anObject(this), push, result, false, true);
return result;
}
});