debian-mirror-gitlab/core-js/modules/esnext.async-iterator.some.js
2019-10-31 01:37:42 +05:30

10 lines
297 B
JavaScript

'use strict';
// https://github.com/tc39/proposal-iterator-helpers
var $ = require('../internals/export');
var $some = require('../internals/async-iterator-iteration').some;
$({ target: 'AsyncIterator', proto: true, real: true }, {
some: function some(fn) {
return $some(this, fn);
}
});