summaryrefslogtreecommitdiff
path: root/lib/groupByLimit.js
Commit message (Collapse)AuthorAgeFilesLines
* be explicit (#1769)Jimmy Wärting2021-11-161-3/+3
|
* Fixes #1582 (#1597)Hubert Argasinski2018-11-271-1/+1
| | | | | | * ensure err is passed on for cancelable methods * fix test descriptions
* feat: await-able Async methods (#1572)Alex Early2018-09-301-4/+7
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * 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
* prefer destructuringAlexander Early2018-07-081-3/+3
|
* disallow variable shadowingAlexander Early2018-07-081-3/+3
|
* ES6-ify codebase (#1553)Alex Early2018-07-081-5/+5
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * cancelable foreach * cancelable waterfall * cancellable auto * fix lint * fix tests * cancelable whilst/until/during/forever * fix waterfall test. It WILL get there * docs * use rest params instead of slice * clean up internals * remove property func * clarify uses of createTester * happy path async funtions in asyncify * stop using arguments * DLL to class * moar arrows * fix merge issues * remove forOwn * moar arrows * fix merge mistake * even more arrows, what can stop him * mo more fn.apply(null,...) * remove more spurious uses of apply * update lint config * just when you thought there couldn't possibly be more arrows * use eslint:recommended * even less uses or aguments * get rid of prototype cuteness * fix concat tests * fix more tests
* Drop noopFederico Brigante2018-04-191-1/+1
|
* use the AsyncFunction type in all docs :sweat:Alexander Early2017-04-011-4/+4
|
* wrapped all collections methodsAlexander Early2017-03-241-3/+3
|
* [#1348] initial groupBy implementation (#1364)Hubert Argasinski2017-02-271-0/+51
* initial groupBy implementation