diff options
author | Alex Early <alexander.early@gmail.com> | 2018-08-05 13:35:58 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-08-05 13:35:58 -0700 |
commit | 61268c58857205c704b28787728ed9bfe780dbd6 (patch) | |
tree | 65f2ff1d524a6e487725207f36b0199da39abe3e /lib/rejectLimit.js | |
parent | 5c174fa63b5a7197ff6abe19a97b74ed7e77646d (diff) | |
download | async-61268c58857205c704b28787728ed9bfe780dbd6.tar.gz |
[wip] initial async generator support (#1560)
feat: initial async generator support
Diffstat (limited to 'lib/rejectLimit.js')
-rw-r--r-- | lib/rejectLimit.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/rejectLimit.js b/lib/rejectLimit.js index 8147811..76e6ffc 100644 --- a/lib/rejectLimit.js +++ b/lib/rejectLimit.js @@ -11,7 +11,7 @@ import doParallelLimit from './internal/doParallelLimit'; * @method * @see [async.reject]{@link module:Collections.reject} * @category Collection - * @param {Array|Iterable|Object} coll - A collection to iterate over. + * @param {Array|Iterable|AsyncIterable|Object} coll - A collection to iterate over. * @param {number} limit - The maximum number of async operations at a time. * @param {Function} iteratee - An async truth test to apply to each item in * `coll`. |