1234567891011121314151617 |
- 'use strict';
- // https://github.com/tc39/proposal-iterator-helpers
- var $ = require('../internals/export');
- var iterate = require('../internals/iterate');
- var aCallable = require('../internals/a-callable');
- var getIteratorDirect = require('../internals/get-iterator-direct');
- $({ target: 'Iterator', proto: true, real: true, forced: true }, {
- forEach: function forEach(fn) {
- var record = getIteratorDirect(this);
- var counter = 0;
- aCallable(fn);
- iterate(record, function (value) {
- fn(value, counter++);
- }, { IS_RECORD: true });
- }
- });
|