| 1 | 'use strict';
|
|---|
| 2 |
|
|---|
| 3 | Object.defineProperty(exports, "__esModule", {
|
|---|
| 4 | value: true
|
|---|
| 5 | });
|
|---|
| 6 |
|
|---|
| 7 | var _reject2 = require('./internal/reject.js');
|
|---|
| 8 |
|
|---|
| 9 | var _reject3 = _interopRequireDefault(_reject2);
|
|---|
| 10 |
|
|---|
| 11 | var _eachOfSeries = require('./eachOfSeries.js');
|
|---|
| 12 |
|
|---|
| 13 | var _eachOfSeries2 = _interopRequireDefault(_eachOfSeries);
|
|---|
| 14 |
|
|---|
| 15 | var _awaitify = require('./internal/awaitify.js');
|
|---|
| 16 |
|
|---|
| 17 | var _awaitify2 = _interopRequireDefault(_awaitify);
|
|---|
| 18 |
|
|---|
| 19 | function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }
|
|---|
| 20 |
|
|---|
| 21 | /**
|
|---|
| 22 | * The same as [`reject`]{@link module:Collections.reject} but runs only a single async operation at a time.
|
|---|
| 23 | *
|
|---|
| 24 | * @name rejectSeries
|
|---|
| 25 | * @static
|
|---|
| 26 | * @memberOf module:Collections
|
|---|
| 27 | * @method
|
|---|
| 28 | * @see [async.reject]{@link module:Collections.reject}
|
|---|
| 29 | * @category Collection
|
|---|
| 30 | * @param {Array|Iterable|AsyncIterable|Object} coll - A collection to iterate over.
|
|---|
| 31 | * @param {Function} iteratee - An async truth test to apply to each item in
|
|---|
| 32 | * `coll`.
|
|---|
| 33 | * The should complete with a boolean value as its `result`.
|
|---|
| 34 | * Invoked with (item, callback).
|
|---|
| 35 | * @param {Function} [callback] - A callback which is called after all the
|
|---|
| 36 | * `iteratee` functions have finished. Invoked with (err, results).
|
|---|
| 37 | * @returns {Promise} a promise, if no callback is passed
|
|---|
| 38 | */
|
|---|
| 39 | function rejectSeries(coll, iteratee, callback) {
|
|---|
| 40 | return (0, _reject3.default)(_eachOfSeries2.default, coll, iteratee, callback);
|
|---|
| 41 | }
|
|---|
| 42 | exports.default = (0, _awaitify2.default)(rejectSeries, 3);
|
|---|
| 43 | module.exports = exports.default; |
|---|