UNPKG

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