summaryrefslogtreecommitdiff
path: root/lib/groupBy.js
Commit message (Collapse)AuthorAgeFilesLines
* be explicit (#1769)Jimmy Wärting2021-11-161-1/+1
|
* Enhance examples for Collections methods. (#1726)Roman Lorenzo Balayan2021-08-051-7/+61
| | | | | | | | | * Enhance examples for Collections methods. * Update collection example code, avoiding usage of IIFE on async/await examples * Convert examples on async.auto, async.series, and async.parallel to samples using Promises and async/await Co-authored-by: Roman Balayan <roman.balayan@paymaya.com>
* feat: await-able Async methods (#1572)Alex Early2018-09-301-2/+4
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * make each and family awaitable * dont pretend they're AsyncFunctions * check errors * ensure function name is preserved somehow * awaitable concat * awaitable detect * awaitable every/filter * awaitable groupBy * awaitable map/mapValues * awaitable reduce * awaitable reject * awaitable some * awaitable transform * awaitable times * awaitable auto * awaitable compose/seq * awaitable whilst/until (lol) * awaitable forever * awaitable parallel/race * awaitable retry * awaitable series (lol) * awaitable tryEach * awaitable waterfall (lol) * lint * cleanup, remove noop and unused internal functions
* [wip] initial async generator support (#1560)Alex Early2018-08-051-1/+1
| | | feat: initial async generator support
* use the AsyncFunction type in all docs :sweat:Alexander Early2017-04-011-4/+4
|
* [#1348] initial groupBy implementation (#1364)Hubert Argasinski2017-02-271-0/+40
* initial groupBy implementation