projecte_ionic/node_modules/core-js-pure/modules/esnext.iterator.to-array.js
2022-02-09 18:30:03 +01:00

16 lines
431 B
JavaScript
Executable file

'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, { that: result, IS_ITERATOR: true });
return result;
}
});