All Downloads are FREE. Search and download functionalities are using the official Maven repository.

package.modules.esnext.async-iterator.every.js Maven / Gradle / Ivy

The newest version!
'use strict';
var $ = require('../internals/export');
var $every = require('../internals/async-iterator-iteration').every;

// `AsyncIterator.prototype.every` method
// https://github.com/tc39/proposal-async-iterator-helpers
$({ target: 'AsyncIterator', proto: true, real: true }, {
  every: function every(predicate) {
    return $every(this, predicate);
  }
});




© 2015 - 2024 Weber Informatics LLC | Privacy Policy