.gitignore added
[dotfiles/.git] / .config / coc / extensions / node_modules / coc-prettier / node_modules / core-js / modules / esnext.async-iterator.for-each.js
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
6 $({ target: 'AsyncIterator', proto: true, real: true }, {
7   forEach: function forEach(fn) {
8     return $forEach(this, fn);
9   }
10 });