jiangping
2025-07-15 175b824c049502e81ddcec7e17f104fce7804cd6
1
2
3
4
5
6
7
8
9
10
11
'use strict';
var $ = require('../internals/export');
var $some = require('../internals/async-iterator-iteration').some;
 
// `AsyncIterator.prototype.some` method
// https://github.com/tc39/proposal-async-iterator-helpers
$({ target: 'AsyncIterator', proto: true, real: true }, {
  some: function some(predicate) {
    return $some(this, predicate);
  }
});