UNPKG

356 BJavaScriptView Raw
1'use strict';
2// https://github.com/tc39/proposal-iterator-helpers
3var $ = require('../internals/export');
4var iterate = require('../internals/iterate');
5var anObject = require('../internals/an-object');
6
7$({ target: 'Iterator', proto: true, real: true }, {
8 forEach: function forEach(fn) {
9 iterate(anObject(this), fn, { IS_ITERATOR: true });
10 }
11});