source: trip-planner-front/node_modules/async/rejectSeries.js@ 6c1585f

Last change on this file since 6c1585f was 6a3a178, checked in by Ema <ema_spirova@…>, 3 years ago

initial commit

  • Property mode set to 100644
File size: 1.1 KB
Line 
1'use strict';
2
3Object.defineProperty(exports, "__esModule", {
4 value: true
5});
6
7var _rejectLimit = require('./rejectLimit');
8
9var _rejectLimit2 = _interopRequireDefault(_rejectLimit);
10
11var _doLimit = require('./internal/doLimit');
12
13var _doLimit2 = _interopRequireDefault(_doLimit);
14
15function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }
16
17/**
18 * The same as [`reject`]{@link module:Collections.reject} but runs only a single async operation at a time.
19 *
20 * @name rejectSeries
21 * @static
22 * @memberOf module:Collections
23 * @method
24 * @see [async.reject]{@link module:Collections.reject}
25 * @category Collection
26 * @param {Array|Iterable|Object} coll - A collection to iterate over.
27 * @param {Function} iteratee - An async truth test to apply to each item in
28 * `coll`.
29 * The should complete with a boolean value as its `result`.
30 * Invoked with (item, callback).
31 * @param {Function} [callback] - A callback which is called after all the
32 * `iteratee` functions have finished. Invoked with (err, results).
33 */
34exports.default = (0, _doLimit2.default)(_rejectLimit2.default, 1);
35module.exports = exports['default'];
Note: See TracBrowser for help on using the repository browser.