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/mapSeries.js | |
parent | 5c174fa63b5a7197ff6abe19a97b74ed7e77646d (diff) | |
download | async-61268c58857205c704b28787728ed9bfe780dbd6.tar.gz |
[wip] initial async generator support (#1560)
feat: initial async generator support
Diffstat (limited to 'lib/mapSeries.js')
-rw-r--r-- | lib/mapSeries.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/mapSeries.js b/lib/mapSeries.js index 596c75e..96b5f0a 100644 --- a/lib/mapSeries.js +++ b/lib/mapSeries.js @@ -10,7 +10,7 @@ import doLimit from './internal/doLimit'; * @method * @see [async.map]{@link module:Collections.map} * @category Collection - * @param {Array|Iterable|Object} coll - A collection to iterate over. + * @param {Array|Iterable|AsyncIterable|Object} coll - A collection to iterate over. * @param {AsyncFunction} iteratee - An async function to apply to each item in * `coll`. * The iteratee should complete with the transformed item. |