debian-mirror-gitlab/core-js/modules/esnext.async-iterator.for-each.js

11 lines
312 B
JavaScript
Raw Normal View History

2019-10-31 01:37:42 +05:30
'use strict';
// https://github.com/tc39/proposal-iterator-helpers
var $ = require('../internals/export');
var $forEach = require('../internals/async-iterator-iteration').forEach;
$({ target: 'AsyncIterator', proto: true, real: true }, {
forEach: function forEach(fn) {
return $forEach(this, fn);
}
});