Last change
on this file since fa375fe was 6a3a178, checked in by Ema <ema_spirova@…>, 3 years ago |
initial commit
|
-
Property mode
set to
100644
|
File size:
1.2 KB
|
Line | |
---|
1 | 'use strict';
|
---|
2 |
|
---|
3 | Object.defineProperty(exports, "__esModule", {
|
---|
4 | value: true
|
---|
5 | });
|
---|
6 |
|
---|
7 | var _filterLimit = require('./filterLimit');
|
---|
8 |
|
---|
9 | var _filterLimit2 = _interopRequireDefault(_filterLimit);
|
---|
10 |
|
---|
11 | var _doLimit = require('./internal/doLimit');
|
---|
12 |
|
---|
13 | var _doLimit2 = _interopRequireDefault(_doLimit);
|
---|
14 |
|
---|
15 | function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }
|
---|
16 |
|
---|
17 | /**
|
---|
18 | * The same as [`filter`]{@link module:Collections.filter} but runs only a single async operation at a time.
|
---|
19 | *
|
---|
20 | * @name filterSeries
|
---|
21 | * @static
|
---|
22 | * @memberOf module:Collections
|
---|
23 | * @method
|
---|
24 | * @see [async.filter]{@link module:Collections.filter}
|
---|
25 | * @alias selectSeries
|
---|
26 | * @category Collection
|
---|
27 | * @param {Array|Iterable|Object} coll - A collection to iterate over.
|
---|
28 | * @param {Function} iteratee - A truth test to apply to each item in `coll`.
|
---|
29 | * The `iteratee` is passed a `callback(err, truthValue)`, which must be called
|
---|
30 | * with a boolean argument once it has completed. 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 | */
|
---|
34 | exports.default = (0, _doLimit2.default)(_filterLimit2.default, 1);
|
---|
35 | module.exports = exports['default']; |
---|
Note:
See
TracBrowser
for help on using the repository browser.