Lines Matching refs:async

43 The `async`/`await` release!
45 …n a Promise if you omit the callback, meaning you can `await` them from within an `async` function.
48 const results = await async.mapLimit(urls, 5, async url => {
58 …ncel an async method, preventing further iteration and callback calls. This is useful for prevent…
68 - A ESM-flavored `async.mjs` is included in the `async` package. This is described in the `package…
82 - Made `async-es` more optimized for webpack users (#1517)
87 … for many methods. Previously, you could not (e.g.) `require('async/find')` or use `async.anyLimi…
93 …caolan.github.io/async/docs.html#concat) ([#1426](https://github.com/caolan/async/issues/1426), [#…
94 …f arguments ([#1437](https://github.com/caolan/async/issues/1437), [#1436](https://github.com/caol…
95 …`running()` ([#1428](https://github.com/caolan/async/issues/1428), [#1429](https://github.com/caol…
96 …s doc fixes ([#1422](https://github.com/caolan/async/issues/1422), [#1424](https://github.com/caol…
99 …ng re-used. ([#1418](https://github.com/caolan/async/issues/1418), [#1419](https://github.com/caol…
102async functions in parallel, where you only expect one to succeed. ([#1365](https://github.com/cao…
103 …, most notably in `parallel` and `waterfall` ([#1395](https://github.com/caolan/async/issues/1395))
104 …n a `queue` ([#1397](https://github.com/caolan/async/issues/1397), [#1391](https://github.com/caol…
105 …rity Policy ([#1404](https://github.com/caolan/async/issues/1404), [#1403](https://github.com/caol…
106 …lback being caught by the underlying Promise ([#1408](https://github.com/caolan/async/issues/1408))
107 - Fixed timing of `queue.empty()` ([#1367](https://github.com/caolan/async/issues/1367))
108 …//github.com/caolan/async/issues/1314), [#1394](https://github.com/caolan/async/issues/1394), [#14…
111async` functions. Wherever you can pass a Node-style/CPS function that uses a callback, you can a…
112 - Small doc fix ([#1392](https://github.com/caolan/async/issues/1392))
115 …`_.groupBy`](http://lodash.com/docs#groupBy) ([#1364](https://github.com/caolan/async/issues/1364))
116 - Fixed `transform` bug when `callback` was not passed ([#1381](https://github.com/caolan/async/iss…
117 - Added note about `reflect` to `parallel` docs ([#1385](https://github.com/caolan/async/issues/138…
120 …function names collided with Array.prototype ([#1358](https://github.com/caolan/async/issues/1358))
121 - Improve some error messages ([#1349](https://github.com/caolan/async/issues/1349))
131 …h `detect`, `some`, `every` on large inputs ([#1293](https://github.com/caolan/async/issues/1293)).
135 …n the error ([#1256](https://github.com/caolan/async/issues/1256), [#1261](https://github.com/caol…
136 …race`, `cargo`, `queue`, and `priorityQueue` ([#1253](https://github.com/caolan/async/issues/1253))
137 …to doc site ([#1251](https://github.com/caolan/async/issues/1251), [#1254](https://github.com/caol…
138 …ing viewed ([#1289](https://github.com/caolan/async/issues/1289), [#1300](https://github.com/caol…
139async/issues/1263), [#1264](https://github.com/caolan/async/issues/1264), [#1271](https://github.c…
143 …//github.com/caolan/async/issues/1245), [#1246](https://github.com/caolan/async/issues/1246), [#12…
149 First and foremost, we have a slick new [site for docs](https://caolan.github.io/async/). Special t…
151 …equire("async/series")` to only require the `series` function. Every Async library function is ava…
153 …on of ES2015 modules. You can now `import {each} from 'async-es'` or `import waterfall from 'async
157 …zation of what an "async" function is. We are now more strictly following the node-style continuat…
168 …llback on the same tick), and are running into stack overflows, wrap it with `async.ensureAsync()`.
170 …g an order of [magnitude faster on large sets of tasks](https://github.com/caolan/async/pull/1205).
174 …in package. (`require('async/auto')`) ([#984](https://github.com/caolan/async/issues/984), [#996](…
175async-es` package. (`import {forEachSeries} from 'async-es'`) ([#984](https://github.com/caolan/as…
176async tasks in parallel and will call its callback with the result of the first task to respond. (…
177 …://github.com/caolan/async/issues/579), [#839](https://github.com/caolan/async/issues/839), [#1074…
178 … same keys. ([#1157](https://github.com/caolan/async/issues/1157), [#1177](https://github.com/caol…
179async function that will make the task time-out after the specified time. ([#1007](https://github.…
180async tasks that always succeeds, by gathering results and errors into an object. ([#942](https:/…
181 …e callback. ([#1016](https://github.com/caolan/async/issues/1016), [#1052](https://github.com/caol…
182 …versions do. ([#940](https://github.com/caolan/async/issues/940), [#1053](https://github.com/caola…
183 …iki/Topological_sorting#Kahn.27s_algorithm) ([#1140](https://github.com/caolan/async/issues/1140)).
184async/issues/608), [#1055](https://github.com/caolan/async/issues/1055), [#1099](https://github.co…
185 …`auto` tasks. ([#635](https://github.com/caolan/async/issues/635), [#637](https://github.com/caola…
186 …relative of `retry` that wraps an async function, making it retry when called. ([#1058](https://gi…
187 …backoff, logging and other retry strategies. ([#1161](https://github.com/caolan/async/issues/1161))
188 … function was resolved with to the callback ([#1231](https://github.com/caolan/async/issues/1231)).
189async/issues/868), [#1030](https://github.com/caolan/async/issues/1030), [#1033](https://github.co…
190 …ueue` task calls its callback with an error. ([#1170](https://github.com/caolan/async/issues/1170))
191 …ies` now pass results to the final callback. ([#1088](https://github.com/caolan/async/issues/1088))
195async/issues/814), [#815](https://github.com/caolan/async/issues/815), [#1048](https://github.com/…
196 …/docs#flip) ([#1036](https://github.com/caolan/async/issues/1036), [#1042](https://github.com/caol…
197async/issues/696), [#704](https://github.com/caolan/async/issues/704), [#1049](https://github.com/…
198 …mapValues`. ([#1157](https://github.com/caolan/async/issues/1157), [#1177](https://github.com/caol…
199async/issues/118), [#774](https://github.com/caolan/async/issues/774), [#1028](https://github.com/…
200 …e internally. ([#778](https://github.com/caolan/async/issues/778), [#847](https://github.com/caola…
201 …retryable`. ([#1054](https://github.com/caolan/async/issues/1054), [#1058](https://github.com/caol…
202 …st function ([#1217](https://github.com/caolan/async/issues/1217), [#1224](https://github.com/caol…
203 …er use the provided helpers or support DLLs ([#1205](https://github.com/caolan/async/issues/1205)).
204 …rt queueing. ([#724](https://github.com/caolan/async/issues/724), [#1078](https://github.com/caola…
205 …_Generators ) which natively supports arrays ([#1237](https://github.com/caolan/async/issues/1237))
206 …M, and Volo ([#1175](https://github.com/caolan/async/issues/1175), #[#176](https://github.com/caol…
210 …o dependency cases in `auto` & `autoInject` ([#1147](https://github.com/caolan/async/issues/1147)).
211 …ncify` with `Promises` could resolve twice ([#1197](https://github.com/caolan/async/issues/1197)).
212 …ional callbacks not actually being optional ([#1223](https://github.com/caolan/async/issues/1223)).
218async/issues/1005), [#1008](https://github.com/caolan/async/issues/1008), [#1010](https://github.c…
220 …ithub.com/aearly) and [**@megawac**](github.com/megawac) for taking the lead on version 2 of async.
225 - Allow using `"constructor"` as an argument in `memoize` ([#998](https://github.com/caolan/async/i…
226 …messsage when `auto` dependency checking fails ([#994](https://github.com/caolan/async/issues/994))
227async/issues/936), [#956](https://github.com/caolan/async/issues/956), [#979](https://github.com/c…
230 …th `pause` in `queue` with concurrency enabled ([#946](https://github.com/caolan/async/issues/946))
231 - `while` and `until` now pass the final result to callback ([#963](https://github.com/caolan/async
232 …y handle concurrency when there is no callback ([#966](https://github.com/caolan/async/issues/966))
233 … error occurs ([#988](https://github.com/caolan/async/issues/988), [#993](https://github.com/caola…
234 …ous doc fixes ([#971](https://github.com/caolan/async/issues/971), [#980](https://github.com/caola…
238 ….transform`](http://lodash.com/docs#transform) ([#892](https://github.com/caolan/async/issues/892))
239 …ith numeric indexes in the next major release. ([#873](https://github.com/caolan/async/issues/873))
240 … argument to limit the number o. running tasks ([#637](https://github.com/caolan/async/issues/637))
241 … retrieve the lis. of currently running tasks. ([#891](https://github.com/caolan/async/issues/891))
242 …mplifications ([#896](https://github.com/caolan/async/issues/896), [#904](https://github.com/caola…
243async/issues/890), [#894](https://github.com/caolan/async/issues/894), [#903](https://github.com/c…
247 - Ensure coverage files don't get published on npm ([#879](https://github.com/caolan/async/issues/8…
251 - Add in overlooked `detectLimit` method ([#866](https://github.com/caolan/async/issues/866))
252 - Removed unnecessary files from npm releases ([#861](https://github.com/caolan/async/issues/861))
253 …d word to prevent :boom: in older environments ([#870](https://github.com/caolan/async/issues/870))
257 - `asyncify` now supports promises ([#840](https://github.com/caolan/async/issues/840))
258 - Added `Limit` versions of `filter` and `reject` ([#836](https://github.com/caolan/async/issues/83…
259 …` and `every` ([#828](https://github.com/caolan/async/issues/828), [#829](https://github.com/caola…
260 …circuit early ([#828](https://github.com/caolan/async/issues/828), [#829](https://github.com/caola…
261 - Improve detection of the global object ([#804](https://github.com/caolan/async/issues/804)), enab…
262 - `whilst` now called with arguments from iterator ([#823](https://github.com/caolan/async/issues/8…
263 - `during` now gets called with arguments from iterator ([#824](https://github.com/caolan/async/iss…
264 - Code simplifications and optimizations aplenty ([diff](https://github.com/caolan/async/compare/v1…
271 …th callbacks. ([#671](https://github.com/caolan/async/issues/671), [#806](https://github.com/caola…
272 …and `doDuring`, which are like `whilst` with an async truth test. ([#800](https://github.com/caola…
273 … parameter to specify a delay between retries. ([#793](https://github.com/caolan/async/issues/793))
274 - `async` should work better in Web Workers due to better `root` detection ([#804](https://github.c…
275 …n `whilst`, `doWhilst`, `until`, and `doUntil` ([#642](https://github.com/caolan/async/issues/642))
276async/issues/786), [#801](https://github.com/caolan/async/issues/801), [#802](https://github.com/c…
277 …ous doc fixes ([#790](https://github.com/caolan/async/issues/790), [#794](https://github.com/caola…
280 …s://github.com/caolan/async/issues/740), [#744](https://github.com/caolan/async/issues/744), [#783…
287 … In 2.0.0, it will be called on the next tick. ([#782](https://github.com/caolan/async/issues/782))
294 - Added `timesLimit` ([#743](https://github.com/caolan/async/issues/743))
295 …is processed. ([#747](https://github.com/caolan/async/issues/747), [#772](https://github.com/caola…
299 …l properties. ([#775](https://github.com/caolan/async/issues/775), [#777](https://github.com/caola…
306 … In 2.0.0, it will be called on the next tick. ([#782](https://github.com/caolan/async/issues/782))
314 …c` - A wrapper that ensures an async function calls its callback on a later tick. ([#769](https://…
316 …nd families will be treated as an empty array ([#667](https://github.com/caolan/async/issues/667)).
317 …r the composed results of `compose` and `seq`. ([#618](https://github.com/caolan/async/issues/618))
319 - Added code coverage through `nyc` and `coveralls` ([#768](https://github.com/caolan/async/issues/…
323 …ger stack overflow with a synchronous iterator ([#622](https://github.com/caolan/async/issues/622))
324 …tions will stop iterating once an error occurs ([#754](https://github.com/caolan/async/issues/754))
325 - Always pass `null` in callbacks when there is no error ([#439](https://github.com/caolan/async/is…
326 …()` after pushing an empty data set to a queue ([#668](https://github.com/caolan/async/issues/668))
327 - `each` and family will properly handle an empty array ([#578](https://github.com/caolan/async/iss…
328 … underlying array is modified during execution ([#557](https://github.com/caolan/async/issues/557))
329 …hrow if a non-function is passed to `q.push()` ([#593](https://github.com/caolan/async/issues/593))
330 - Doc fixes ([#629](https://github.com/caolan/async/issues/629), [#766](https://github.com/caolan/a…
340 …ps://github.com/caolan/async/issues/168) [#704](https://github.com/caolan/async/issues/704) [#321]…
341 - Detect deadlocks in `auto` ([#663](https://github.com/caolan/async/issues/663))
342 - Better support for require.js ([#527](https://github.com/caolan/async/issues/527))
343 - Throw if queue created with concurrency `0` ([#714](https://github.com/caolan/async/issues/714))
344 - Fix unneeded iteration in `queue.resume()` ([#758](https://github.com/caolan/async/issues/758))
345 …setImmediate` ([#609](https://github.com/caolan/async/issues/609) [#611](https://github.com/caolan…
346async/issues/542) [#596](https://github.com/caolan/async/issues/596) [#615](https://github.com/cao…
347 - Use single noop function internally ([#546](https://github.com/caolan/async/issues/546))