esnext.async-iterator.for-each.js 312 B

12345678910
  1. 'use strict';
  2. // https://github.com/tc39/proposal-iterator-helpers
  3. var $ = require('../internals/export');
  4. var $forEach = require('../internals/async-iterator-iteration').forEach;
  5. $({ target: 'AsyncIterator', proto: true, real: true }, {
  6. forEach: function forEach(fn) {
  7. return $forEach(this, fn);
  8. }
  9. });