summaryrefslogtreecommitdiff
path: root/lib/internal
Commit message (Collapse)AuthorAgeFilesLines
* cancelable foreachAlexander Early2018-06-031-2/+8
|
* Drop lodash.isarraylikeFederico Brigante2018-04-194-3/+9
|
* Drop _baseRangeFederico Brigante2018-04-191-0/+7
|
* Drop arrayMapFederico Brigante2018-04-191-3/+2
|
* Drop _basePropertyFederico Brigante2018-04-192-1/+6
|
* Drop identityFederico Brigante2018-04-191-0/+3
|
* Drop noopFederico Brigante2018-04-197-7/+7
|
* Drop _baseIndexOfFederico Brigante2018-04-191-2/+1
|
* Drop keysFederico Brigante2018-04-191-2/+1
|
* Use lodash.isarraylikeFederico Brigante2018-04-193-3/+3
| | | | | package size minified gzipped lodash.isarraylike@4.2.0 4.54 kB 376 B 161 B
* Drop isArrayFederico Brigante2018-04-191-2/+1
|
* Drop _baseForOwnFederico Brigante2018-04-191-0/+8
|
* Drop _arrayEachFederico Brigante2018-04-191-2/+1
|
* fix "RangeError: Maximum call stack size exceeded"Stéphane MBAPE2018-02-141-1/+4
|
* Use shift instead of splice (when possible) in queueDoron Pagot2017-07-211-1/+3
|
* Improve `async.queue` start up performance (#1448)Hubert Argasinski2017-07-101-1/+9
| | | | | | | | | | * batch queue.push calls * add more queue perf suites * undo dist changes * prevent overwriting q.process from pausing the queue
* preserve order, make variadic and handle falsy values in concat [fixes ↵Hubert Argasinski2017-06-232-19/+0
| | | | | | | | | | | | | | | | #1437] (#1436) * preserve order in concat * remove comment * fix concatLimit linting * handle variadic and falsy results in concatLimit [fixes #1437] * fix tests (typos) * PR fixes
* ensure q.workersList() contains items being processed [fixes #1428] (#1429)Hubert Argasinski2017-06-101-2/+3
| | | | | | | | * ensure q.workersList() contains items being processed [fixes #1428] * remove newline * improve q.workersList() test
* Avoid eval in async wrappers; fixes #1403Graeme Yeates2017-04-171-14/+2
|
* refactor flaky queue testsAlexander Early2017-04-081-2/+1
|
* Merge pull request #1397 from caolan/linked-list-methodsAlex Early2017-04-082-1/+30
|\ | | | | queue.remove()
| * rename filter to removeAlexander Early2017-04-082-5/+3
| |
| * add queue.removelinked-list-methodsAlexander Early2017-04-061-0/+5
| |
| * added tests for DLL, filter(), non-leaking empty()Alexander Early2017-04-061-1/+27
| |
* | small fixes from reviewAlexander Early2017-04-041-4/+4
| |
* | remove rest completelyAlexander Early2017-04-036-28/+24
| |
* | optimize auto, parallel, and waterfall by not useing rest()Alexander Early2017-04-022-6/+15
|/
* change timing of q.empty() so that q.idle() will be false. Fixes #1367Alexander Early2017-04-021-2/+3
|
* fix small issues from PRAlexander Early2017-03-271-3/+2
|
* handle async functions in relevant utility methodsAlexander Early2017-03-251-1/+2
|
* handle async funcs in control flow methodsAlexander Early2017-03-254-16/+21
|
* wrapped all collections methodsAlexander Early2017-03-244-9/+12
|
* factor out async support check, make wrapAsync identity() in non-supported envsAlexander Early2017-03-221-5/+22
|
* initial experiment with async fn supportAlexander Early2017-03-223-2/+17
|
* standardize detect, every, and some implementationsHubert Argasinski2017-01-291-28/+20
|
* Merge pull request #1334 from megawac/pr/1267Graeme Yeates2016-12-021-6/+9
|\ | | | | Pr/1267
| * Avoid unnessary queuing of *concurrency processes on resumepr/1267Graeme Yeates2016-12-011-6/+1
| |
| * Slightly different approach to avoiding starting to processing tasks with ↵Graeme Yeates2016-11-301-11/+9
| | | | | | | | sync callbacks
| * prevent stack growth if queue callback is called synchronouslyJames Crosby2016-11-301-1/+11
| |
* | remove unnecessary arraysoresoftware2016-11-302-3/+3
|/
* Merge pull request #1327 from caolan/lib-import-cleanupsGraeme Yeates2016-11-179-13/+16
|\ | | | | Cleanup some of the dependency imports
| * Cleanup some of the dependency importslib-import-cleanupsGraeme Yeates2016-11-179-13/+16
| | | | | | | | Saves 800 bytes on min.js
* | Implement array specific filter functionfilter-array-specificGraeme Yeates2016-11-171-4/+25
|/
* Merge pull request #1320 from caolan/pr/1297Graeme Yeates2016-11-141-4/+2
|\ | | | | Pr/1297
| * Revert back to previous filter implementationGraeme Yeates2016-11-141-17/+19
| |
| * Handle iteratorspr/1297Graeme Yeates2016-11-111-5/+8
| |
| * Avoid importing lodash/filter in async.filterGraeme Yeates2016-11-111-7/+12
| |
| * Test filtering an object.Cody Taylor2016-10-161-4/+4
| |
| * Improve filter by reducing complexity.Cody Taylor2016-10-051-20/+8
| |
* | Add short circuit test for everyGraeme Yeates2016-10-151-2/+3
| |