Security update to Drupal 8.4.6
[yaffs-website] / node_modules / grunt-uncss / node_modules / async / rejectLimit.js
1 'use strict';
2
3 Object.defineProperty(exports, "__esModule", {
4   value: true
5 });
6
7 var _reject = require('./internal/reject');
8
9 var _reject2 = _interopRequireDefault(_reject);
10
11 var _doParallelLimit = require('./internal/doParallelLimit');
12
13 var _doParallelLimit2 = _interopRequireDefault(_doParallelLimit);
14
15 function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }
16
17 /**
18  * The same as [`reject`]{@link module:Collections.reject} but runs a maximum of `limit` async operations at a
19  * time.
20  *
21  * @name rejectLimit
22  * @static
23  * @memberOf module:Collections
24  * @method
25  * @see [async.reject]{@link module:Collections.reject}
26  * @category Collection
27  * @param {Array|Iterable|Object} coll - A collection to iterate over.
28  * @param {number} limit - The maximum number of async operations at a time.
29  * @param {Function} iteratee - A truth test to apply to each item in `coll`.
30  * The `iteratee` is passed a `callback(err, truthValue)`, which must be called
31  * with a boolean argument once it has completed. Invoked with (item, callback).
32  * @param {Function} [callback] - A callback which is called after all the
33  * `iteratee` functions have finished. Invoked with (err, results).
34  */
35 exports.default = (0, _doParallelLimit2.default)(_reject2.default);
36 module.exports = exports['default'];