윤준현

UseAsync

contents are merged into app
Showing 138 changed files with 8466 additions and 37 deletions
...@@ -3,8 +3,9 @@ ...@@ -3,8 +3,9 @@
3 var express = require('express'); 3 var express = require('express');
4 var http = require('http'); 4 var http = require('http');
5 var bodyParser = require('body-parser'); 5 var bodyParser = require('body-parser');
6 -var singer = require('./content')
7 var app = express(); // express 객체 저장 6 var app = express(); // express 객체 저장
7 +var webcrawl = require('./crawling/Reol');
8 +var async = require('async');
8 9
9 //body-parser 미들웨어 사용 10 //body-parser 미들웨어 사용
10 app.use(bodyParser.urlencoded({extended: false})); 11 app.use(bodyParser.urlencoded({extended: false}));
...@@ -19,50 +20,137 @@ app.get('/keyboard', function(req,res){ ...@@ -19,50 +20,137 @@ app.get('/keyboard', function(req,res){
19 20
20 }); 21 });
21 22
22 -//9090포트로 서버 접속 23 +//8080포트로 서버 접속
23 http.createServer(app).listen(8080, () => { 24 http.createServer(app).listen(8080, () => {
24 console.log('Server running..'); 25 console.log('Server running..');
25 }); 26 });
26 27
27 -
28 // http://서버주소/message 28 // http://서버주소/message
29 app.post('/message', function(req,res){ 29 app.post('/message', function(req,res){
30 //유저가 입력한 데이터 30 //유저가 입력한 데이터
31 var msg = req.body.content; 31 var msg = req.body.content;
32 console.log('전달받은 메시지 : ' + msg); 32 console.log('전달받은 메시지 : ' + msg);
33 -
34 var send = {}; 33 var send = {};
35 - 34 + var task = [
35 + function(callback){
36 switch(msg){ 36 switch(msg){
37 - case '일본' : 37 + case 'Reol-Discography' :
38 + webcrawl.crawl_Reol('https://namu.wiki/w/%EB%A0%88%EC%98%A4%EB%A3%A8/%EC%9D%8C%EB%B0%98#toc',function(Reol){
39 + callback(null,Reol);
40 + })
41 + break;
42 + case '米津玄師-Discography' :
43 +
44 + }
45 +
46 + },
47 + function(discography, callback){
48 + switch (msg) {
49 + case '일본':
50 + send = {
51 + 'message': {
52 + 'text': '등록된 가수 목록입니다.'
53 + },
54 + keyboard: {
55 + 'type': 'buttons',
56 + 'buttons': ['Reol', '米津玄師', 'yanaginagi', 'ヨルシカ', 'ダズビ', 'Polkadot Stingray', 'Aimyong']
57 + }
58 +
59 + };
60 + break;
61 +
62 + case '한국':
63 + send = {
64 + 'message': {
65 + 'text': '등록된 가수 목록입니다.'
66 + },
67 + keyboard: {
68 + 'type': 'buttons',
69 + 'buttons': ['볼빨간 사춘기', 'MOT', 'Gukkasten', 'ZICO', 'DEAN', 'IU', 'Heize']
70 + }
71 + };
72 + break;
73 + // ---------- contents -------------- //
74 + ///// Reol ////
75 + case 'Reol' :
38 send = { 76 send = {
39 'message' : { 77 'message' : {
40 - 'text' : '등록된 가수 목록입니다.' 78 + 'text' : '이름 : Reol(れをる) \n성별 : 여성 \n생년월일 : 1993년 11월 9일 \n혈액형 : AB형',
79 + 'photo' : {
80 + 'url' : 'https://www.reol.jp/images/profile/reol_Aphoto_2.png',
81 + 'width' : 1000,
82 + 'height' : 667
83 + },
84 + 'message_button' : {
85 + 'label' : '공식 홈페이지',
86 + 'url' : "https://www.reol.jp/"
87 + }
41 }, 88 },
42 keyboard : { 89 keyboard : {
43 'type' : 'buttons', 90 'type' : 'buttons',
44 - 'buttons' : ['Reol', '米津玄師', 'yanaginagi', 'ヨルシカ', 'ダズビ', 'Polkadot Stingray', 'Aimyong'] 91 + 'buttons' : ['Reol-Discography']
45 } 92 }
46 -
47 }; 93 };
48 break; 94 break;
49 - case '한국' : 95 + case 'Reol-Discography' :
96 + console.log(discography);
97 + send = {
98 + 'message': {
99 + 'text': '앨범 목록입니다.'
100 + },
101 + keyboard: {
102 + 'type': 'buttons',
103 + 'buttons': discography[0].json_album
104 + }
105 + }
106 + break;
107 + case discography[0].json_album[0]:
108 + send = {
109 + 'message' : {
110 + 'text' : discography[0].json_album[0] + '\n 발매년도 : ' + discography[0].json_year[0] + '\n 수록곡 : \n' + discography[0].json_track[0]
111 + }
112 + }
113 + /// 米津玄師 ///
114 + case '米津玄師' :
50 send = { 115 send = {
51 'message' : { 116 'message' : {
52 - 'text' : '등록된 가수 목록입니다.' 117 + 'text' : '이름 : 米津玄師(Yonezu Kenshi) \n 성별 : 남성 \n생년월일 : 1991년 3월 10일 \n혈액형 : O형',
118 + 'photo' : {
119 + 'url' : 'http://reissuerecords.net/rr/wp-content/uploads/flamingo_photo2.jpg',
120 + 'width' : 1000,
121 + 'height' : 667
122 + },
123 + 'message_button' : {
124 + 'label' : '공식 홈페이지',
125 + 'url' : "http://reissuerecords.net/"
126 + }
53 }, 127 },
54 keyboard : { 128 keyboard : {
55 'type' : 'buttons', 129 'type' : 'buttons',
56 - 'buttons' : ['볼빨간 사춘기', 'MOT', 'Gukkasten', 'ZICO', 'DEAN', 'IU', 'Heize'] 130 + 'buttons' : ['米津玄師-Discography']
57 } 131 }
58 }; 132 };
59 break; 133 break;
134 + case '米津玄師-Discography' :
135 + send = {
136 + 'message' : {
137 + 'text' : 'Album List'
138 + },
139 + keyboard : {
140 + 'type' : 'buttons',
141 + 'buttons' : ['Reol', '米津玄師', 'yanaginagi', 'ヨルシカ', 'ダズビ', 'Polkadot Stingray', 'Aimyong']
142 + }
143 +
144 + };
60 default: 145 default:
61 - send = singer.jpSinger(msg);
62 - if(send == '')
63 - send = singer.krSinger(msg);
64 break; 146 break;
65 } 147 }
148 + callback(null ,send);
149 + }
150 + ];
151 + async.waterfall(task, function(err,result){
66 console.log(send); 152 console.log(send);
67 res.json(send); 153 res.json(send);
68 -})
...\ No newline at end of file ...\ No newline at end of file
154 + });
155 +
156 +});
...\ No newline at end of file ...\ No newline at end of file
......
1 -var webcrawl = require('./crawling/Reol') 1 +var webcrawl = require('./crawling/Reol');
2 +var async = require('async');
2 3
3 - 4 +function jpSinger(msg, send){
4 -function jpSinger(msg, discography){
5 var discography; 5 var discography;
6 - var send = {}; 6 + var task = [
7 - function delay(discography){ 7 + function(callback){
8 + webcrawl.crawl_Reol('https://namu.wiki/w/%EB%A0%88%EC%98%A4%EB%A3%A8/%EC%9D%8C%EB%B0%98#toc').then(function(Result){
9 + callback(null,Result)}).catch(function(err){});
10 + },
11 + function(discography, callback){
12 + console.log(discography);
13 +
8 switch(msg){ 14 switch(msg){
9 case 'Reol' : 15 case 'Reol' :
10 send = { 16 send = {
...@@ -70,22 +76,20 @@ function jpSinger(msg, discography){ ...@@ -70,22 +76,20 @@ function jpSinger(msg, discography){
70 76
71 }; 77 };
72 break; 78 break;
73 -
74 default: 79 default:
75 break; 80 break;
76 } 81 }
82 + callback(null,send);
77 } 83 }
78 - webcrawl.crawl_Reol('https://namu.wiki/w/%EB%A0%88%EC%98%A4%EB%A3%A8/%EC%9D%8C%EB%B0%98#toc').then(function(Result){ 84 + ];
79 - discography = Result; 85 + async.waterfall(task, function(err, result){
80 - }).catch(function(err){ 86 + console.log(result, send);
81 - console.error(err);
82 - }).then(function(){
83 - console.log(discography);
84 - delay(discography);
85 }); 87 });
88 +
86 return send; 89 return send;
87 } 90 }
88 91
92 +
89 function krSinger(msg){ 93 function krSinger(msg){
90 var send = {}; 94 var send = {};
91 switch(msg){ 95 switch(msg){
......
1 //Reol 나무위키 앨범 발매년도 트랙 크롤링 1 //Reol 나무위키 앨범 발매년도 트랙 크롤링
2 +
2 var request = require('request'); 3 var request = require('request');
3 var cheerio = require('cheerio'); 4 var cheerio = require('cheerio');
4 -function crawl_Reol(url){ 5 +function crawl_Reol(url,callback){
5 - return new Promise(function(resolve, reject){
6 request(url, function (err, res, body) { 6 request(url, function (err, res, body) {
7 const $ = cheerio.load(body); 7 const $ = cheerio.load(body);
8 8
...@@ -44,13 +44,87 @@ function crawl_Reol(url){ ...@@ -44,13 +44,87 @@ function crawl_Reol(url){
44 album_track = []; 44 album_track = [];
45 } 45 }
46 }); 46 });
47 - Reol.push({ json_album, json_year, json_track }); 47 + callback(Reol);
48 - if (Reol) {
49 - resolve(Reol);
50 - }
51 - reject(new Error("Request is failed"));
52 - });
53 }); 48 });
54 } 49 }
55 50
56 exports.crawl_Reol = crawl_Reol; 51 exports.crawl_Reol = crawl_Reol;
52 +
53 +
54 +
55 +
56 +
57 +
58 +
59 +
60 +
61 +
62 +
63 +
64 +
65 +
66 +
67 +
68 +
69 +
70 +
71 +
72 +
73 +
74 +// promise
75 +
76 +// var request = require('request');
77 +// var cheerio = require('cheerio');
78 +// function crawl_Reol(url){
79 +// return new Promise(function(resolve, reject){
80 +// request(url, function (err, res, body) {
81 +// const $ = cheerio.load(body);
82 +
83 +// var Reol = new Array();
84 +// var album, year
85 +// var album_track = new Array();
86 +// var json_album = new Array(), json_year = new Array(), json_track = new Array();
87 +// $('body > div.content-wrapper > article > div.wiki-content.clearfix > div').each(function (index, ele) {
88 +// for (var i = 1; i <= $('.toc-item').length; i++) {
89 +// album = $(this).find('#toc > div > div:nth-child(2) > span:nth-child(' + i + ')').text() //앨범 정보 가져오기
90 +// if (album != '') {
91 +// json_album.push(album.substr(2));
92 +// }
93 +
94 +// var index = 7 + (i * 2); //트랙, 연도 가져오기 인덱스 변수
95 +
96 +// if (index != 25) { //규칙성이 어긋나는 부분을 예외처리를 위해 if문
97 +// //year 가져오기
98 +// year = $('body > div.content-wrapper > article > div.wiki-content.clearfix > div > div:nth-child(' + index + ') > div:nth-child(3) > table > tbody > tr:nth-child(1) > td:nth-child(2)').text();
99 +// //track 가져오기
100 +// $('body > div.content-wrapper > article > div.wiki-content.clearfix > div > div:nth-child(' + index + ') > div:nth-child(3) > table > tbody').find('tr').each(function (index, ele) {
101 +// var track = $(this).children().eq(1).text();
102 +// if (track != '1' && track != '곡명' && track[4] != '년')
103 +// album_track.push(track)
104 +// });
105 +// }
106 +// else {
107 +// year = $('body > div.content-wrapper > article > div.wiki-content.clearfix > div > div:nth-child(' + index + ') > div:nth-child(4) > table > tbody > tr:nth-child(1) > td:nth-child(2)').text();
108 +// $('body > div.content-wrapper > article > div.wiki-content.clearfix > div > div:nth-child(' + index + ') > div:nth-child(4) > table > tbody').find('tr').each(function (index, ele) {
109 +// var track = $(this).children().eq(1).text();
110 +// if (track != '1' && track != '곡명' && track[4] != '년')
111 +// album_track.push(track)
112 +// });
113 +// }
114 +// if (year != '') {
115 +// json_year.push(year);
116 +// json_track.push(album_track);
117 +// }
118 +// album_track = [];
119 +// }
120 +// });
121 +// Reol.push({ json_album, json_year, json_track });
122 +// if (Reol) {
123 +// resolve(Reol);
124 +// }
125 +// reject(new Error("Request is failed"));
126 +// });
127 +// });
128 +// }
129 +
130 +// exports.crawl_Reol = crawl_Reol;
...\ No newline at end of file ...\ No newline at end of file
......
1 +# v2.6.1
2 +- Updated lodash to prevent `npm audit` warnings. (#1532, #1533)
3 +- Made `async-es` more optimized for webpack users (#1517)
4 +- Fixed a stack overflow with large collections and a synchronous iterator (#1514)
5 +- Various small fixes/chores (#1505, #1511, #1527, #1530)
6 +
7 +# v2.6.0
8 +- Added missing aliases for many methods. Previously, you could not (e.g.) `require('async/find')` or use `async.anyLimit`. (#1483)
9 +- Improved `queue` performance. (#1448, #1454)
10 +- Add missing sourcemap (#1452, #1453)
11 +- Various doc updates (#1448, #1471, #1483)
12 +
13 +# v2.5.0
14 +- Added `concatLimit`, the `Limit` equivalent of [`concat`](https://caolan.github.io/async/docs.html#concat) ([#1426](https://github.com/caolan/async/issues/1426), [#1430](https://github.com/caolan/async/pull/1430))
15 +- `concat` improvements: it now preserves order, handles falsy values and the `iteratee` callback takes a variable number of arguments ([#1437](https://github.com/caolan/async/issues/1437), [#1436](https://github.com/caolan/async/pull/1436))
16 +- Fixed an issue in `queue` where there was a size discrepancy between `workersList().length` and `running()` ([#1428](https://github.com/caolan/async/issues/1428), [#1429](https://github.com/caolan/async/pull/1429))
17 +- Various doc fixes ([#1422](https://github.com/caolan/async/issues/1422), [#1424](https://github.com/caolan/async/pull/1424))
18 +
19 +# v2.4.1
20 +- Fixed a bug preventing functions wrapped with `timeout()` from being re-used. ([#1418](https://github.com/caolan/async/issues/1418), [#1419](https://github.com/caolan/async/issues/1419))
21 +
22 +# v2.4.0
23 +- Added `tryEach`, for running async functions in parallel, where you only expect one to succeed. ([#1365](https://github.com/caolan/async/issues/1365), [#687](https://github.com/caolan/async/issues/687))
24 +- Improved performance, most notably in `parallel` and `waterfall` ([#1395](https://github.com/caolan/async/issues/1395))
25 +- Added `queue.remove()`, for removing items in a `queue` ([#1397](https://github.com/caolan/async/issues/1397), [#1391](https://github.com/caolan/async/issues/1391))
26 +- Fixed using `eval`, preventing Async from running in pages with Content Security Policy ([#1404](https://github.com/caolan/async/issues/1404), [#1403](https://github.com/caolan/async/issues/1403))
27 +- Fixed errors thrown in an `asyncify`ed function's callback being caught by the underlying Promise ([#1408](https://github.com/caolan/async/issues/1408))
28 +- Fixed timing of `queue.empty()` ([#1367](https://github.com/caolan/async/issues/1367))
29 +- Various doc fixes ([#1314](https://github.com/caolan/async/issues/1314), [#1394](https://github.com/caolan/async/issues/1394), [#1412](https://github.com/caolan/async/issues/1412))
30 +
31 +# v2.3.0
32 +- Added support for ES2017 `async` functions. Wherever you can pass a Node-style/CPS function that uses a callback, you can also pass an `async` function. Previously, you had to wrap `async` functions with `asyncify`. The caveat is that it will only work if `async` functions are supported natively in your environment, transpiled implementations can't be detected. ([#1386](https://github.com/caolan/async/issues/1386), [#1390](https://github.com/caolan/async/issues/1390))
33 +- Small doc fix ([#1392](https://github.com/caolan/async/issues/1392))
34 +
35 +# v2.2.0
36 +- Added `groupBy`, and the `Series`/`Limit` equivalents, analogous to [`_.groupBy`](http://lodash.com/docs#groupBy) ([#1364](https://github.com/caolan/async/issues/1364))
37 +- Fixed `transform` bug when `callback` was not passed ([#1381](https://github.com/caolan/async/issues/1381))
38 +- Added note about `reflect` to `parallel` docs ([#1385](https://github.com/caolan/async/issues/1385))
39 +
40 +# v2.1.5
41 +- Fix `auto` bug when function names collided with Array.prototype ([#1358](https://github.com/caolan/async/issues/1358))
42 +- Improve some error messages ([#1349](https://github.com/caolan/async/issues/1349))
43 +- Avoid stack overflow case in queue
44 +- Fixed an issue in `some`, `every` and `find` where processing would continue after the result was determined.
45 +- Cleanup implementations of `some`, `every` and `find`
46 +
47 +# v2.1.3
48 +- Make bundle size smaller
49 +- Create optimized hotpath for `filter` in array case.
50 +
51 +# v2.1.2
52 +- Fixed a stackoverflow bug with `detect`, `some`, `every` on large inputs ([#1293](https://github.com/caolan/async/issues/1293)).
53 +
54 +# v2.1.0
55 +
56 +- `retry` and `retryable` now support an optional `errorFilter` function that determines if the `task` should retry on the error ([#1256](https://github.com/caolan/async/issues/1256), [#1261](https://github.com/caolan/async/issues/1261))
57 +- Optimized array iteration in `race`, `cargo`, `queue`, and `priorityQueue` ([#1253](https://github.com/caolan/async/issues/1253))
58 +- Added alias documentation to doc site ([#1251](https://github.com/caolan/async/issues/1251), [#1254](https://github.com/caolan/async/issues/1254))
59 +- Added [BootStrap scrollspy](http://getbootstrap.com/javascript/#scrollspy) to docs to highlight in the sidebar the current method being viewed ([#1289](https://github.com/caolan/async/issues/1289), [#1300](https://github.com/caolan/async/issues/1300))
60 +- Various minor doc fixes ([#1263](https://github.com/caolan/async/issues/1263), [#1264](https://github.com/caolan/async/issues/1264), [#1271](https://github.com/caolan/async/issues/1271), [#1278](https://github.com/caolan/async/issues/1278), [#1280](https://github.com/caolan/async/issues/1280), [#1282](https://github.com/caolan/async/issues/1282), [#1302](https://github.com/caolan/async/issues/1302))
61 +
62 +# v2.0.1
63 +
64 +- Significantly optimized all iteration based collection methods such as `each`, `map`, `filter`, etc ([#1245](https://github.com/caolan/async/issues/1245), [#1246](https://github.com/caolan/async/issues/1246), [#1247](https://github.com/caolan/async/issues/1247)).
65 +
66 +# v2.0.0
67 +
68 +Lots of changes here!
69 +
70 +First and foremost, we have a slick new [site for docs](https://caolan.github.io/async/). Special thanks to [**@hargasinski**](https://github.com/hargasinski) for his work converting our old docs to `jsdoc` format and implementing the new website. Also huge ups to [**@ivanseidel**](https://github.com/ivanseidel) for designing our new logo. It was a long process for both of these tasks, but I think these changes turned out extraordinary well.
71 +
72 +The biggest feature is modularization. You can now `require("async/series")` to only require the `series` function. Every Async library function is available this way. You still can `require("async")` to require the entire library, like you could do before.
73 +
74 +We also provide Async as a collection of ES2015 modules. You can now `import {each} from 'async-es'` or `import waterfall from 'async-es/waterfall'`. If you are using only a few Async functions, and are using a ES bundler such as Rollup, this can significantly lower your build size.
75 +
76 +Major thanks to [**@Kikobeats**](github.com/Kikobeats), [**@aearly**](github.com/aearly) and [**@megawac**](github.com/megawac) for doing the majority of the modularization work, as well as [**@jdalton**](github.com/jdalton) and [**@Rich-Harris**](github.com/Rich-Harris) for advisory work on the general modularization strategy.
77 +
78 +Another one of the general themes of the 2.0 release is standardization of what an "async" function is. We are now more strictly following the node-style continuation passing style. That is, an async function is a function that:
79 +
80 +1. Takes a variable number of arguments
81 +2. The last argument is always a callback
82 +3. The callback can accept any number of arguments
83 +4. The first argument passed to the callback will be treated as an error result, if the argument is truthy
84 +5. Any number of result arguments can be passed after the "error" argument
85 +6. The callback is called once and exactly once, either on the same tick or later tick of the JavaScript event loop.
86 +
87 +There were several cases where Async accepted some functions that did not strictly have these properties, most notably `auto`, `every`, `some`, `filter`, `reject` and `detect`.
88 +
89 +Another theme is performance. We have eliminated internal deferrals in all cases where they make sense. For example, in `waterfall` and `auto`, there was a `setImmediate` between each task -- these deferrals have been removed. A `setImmediate` call can add up to 1ms of delay. This might not seem like a lot, but it can add up if you are using many Async functions in the course of processing a HTTP request, for example. Nearly all asynchronous functions that do I/O already have some sort of deferral built in, so the extra deferral is unnecessary. The trade-off of this change is removing our built-in stack-overflow defense. Many synchronous callback calls in series can quickly overflow the JS call stack. If you do have a function that is sometimes synchronous (calling its callback on the same tick), and are running into stack overflows, wrap it with `async.ensureAsync()`.
90 +
91 +Another big performance win has been re-implementing `queue`, `cargo`, and `priorityQueue` with [doubly linked lists](https://en.wikipedia.org/wiki/Doubly_linked_list) instead of arrays. This has lead to queues being an order of [magnitude faster on large sets of tasks](https://github.com/caolan/async/pull/1205).
92 +
93 +## New Features
94 +
95 +- Async is now modularized. Individual functions can be `require()`d from the main package. (`require('async/auto')`) ([#984](https://github.com/caolan/async/issues/984), [#996](https://github.com/caolan/async/issues/996))
96 +- Async is also available as a collection of ES2015 modules in the new `async-es` package. (`import {forEachSeries} from 'async-es'`) ([#984](https://github.com/caolan/async/issues/984), [#996](https://github.com/caolan/async/issues/996))
97 +- Added `race`, analogous to `Promise.race()`. It will run an array of async tasks in parallel and will call its callback with the result of the first task to respond. ([#568](https://github.com/caolan/async/issues/568), [#1038](https://github.com/caolan/async/issues/1038))
98 +- Collection methods now accept ES2015 iterators. Maps, Sets, and anything that implements the iterator spec can now be passed directly to `each`, `map`, `parallel`, etc.. ([#579](https://github.com/caolan/async/issues/579), [#839](https://github.com/caolan/async/issues/839), [#1074](https://github.com/caolan/async/issues/1074))
99 +- Added `mapValues`, for mapping over the properties of an object and returning an object with the same keys. ([#1157](https://github.com/caolan/async/issues/1157), [#1177](https://github.com/caolan/async/issues/1177))
100 +- Added `timeout`, a wrapper for an async function that will make the task time-out after the specified time. ([#1007](https://github.com/caolan/async/issues/1007), [#1027](https://github.com/caolan/async/issues/1027))
101 +- Added `reflect` and `reflectAll`, analagous to [`Promise.reflect()`](http://bluebirdjs.com/docs/api/reflect.html), a wrapper for async tasks that always succeeds, by gathering results and errors into an object. ([#942](https://github.com/caolan/async/issues/942), [#1012](https://github.com/caolan/async/issues/1012), [#1095](https://github.com/caolan/async/issues/1095))
102 +- `constant` supports dynamic arguments -- it will now always use its last argument as the callback. ([#1016](https://github.com/caolan/async/issues/1016), [#1052](https://github.com/caolan/async/issues/1052))
103 +- `setImmediate` and `nextTick` now support arguments to partially apply to the deferred function, like the node-native versions do. ([#940](https://github.com/caolan/async/issues/940), [#1053](https://github.com/caolan/async/issues/1053))
104 +- `auto` now supports resolving cyclic dependencies using [Kahn's algorithm](https://en.wikipedia.org/wiki/Topological_sorting#Kahn.27s_algorithm) ([#1140](https://github.com/caolan/async/issues/1140)).
105 +- Added `autoInject`, a relative of `auto` that automatically spreads a task's dependencies as arguments to the task function. ([#608](https://github.com/caolan/async/issues/608), [#1055](https://github.com/caolan/async/issues/1055), [#1099](https://github.com/caolan/async/issues/1099), [#1100](https://github.com/caolan/async/issues/1100))
106 +- You can now limit the concurrency of `auto` tasks. ([#635](https://github.com/caolan/async/issues/635), [#637](https://github.com/caolan/async/issues/637))
107 +- Added `retryable`, a relative of `retry` that wraps an async function, making it retry when called. ([#1058](https://github.com/caolan/async/issues/1058))
108 +- `retry` now supports specifying a function that determines the next time interval, useful for exponential backoff, logging and other retry strategies. ([#1161](https://github.com/caolan/async/issues/1161))
109 +- `retry` will now pass all of the arguments the task function was resolved with to the callback ([#1231](https://github.com/caolan/async/issues/1231)).
110 +- Added `q.unsaturated` -- callback called when a `queue`'s number of running workers falls below a threshold. ([#868](https://github.com/caolan/async/issues/868), [#1030](https://github.com/caolan/async/issues/1030), [#1033](https://github.com/caolan/async/issues/1033), [#1034](https://github.com/caolan/async/issues/1034))
111 +- Added `q.error` -- a callback called whenever a `queue` task calls its callback with an error. ([#1170](https://github.com/caolan/async/issues/1170))
112 +- `applyEach` and `applyEachSeries` now pass results to the final callback. ([#1088](https://github.com/caolan/async/issues/1088))
113 +
114 +## Breaking changes
115 +
116 +- Calling a callback more than once is considered an error, and an error will be thrown. This had an explicit breaking change in `waterfall`. If you were relying on this behavior, you should more accurately represent your control flow as an event emitter or stream. ([#814](https://github.com/caolan/async/issues/814), [#815](https://github.com/caolan/async/issues/815), [#1048](https://github.com/caolan/async/issues/1048), [#1050](https://github.com/caolan/async/issues/1050))
117 +- `auto` task functions now always take the callback as the last argument. If a task has dependencies, the `results` object will be passed as the first argument. To migrate old task functions, wrap them with [`_.flip`](https://lodash.com/docs#flip) ([#1036](https://github.com/caolan/async/issues/1036), [#1042](https://github.com/caolan/async/issues/1042))
118 +- Internal `setImmediate` calls have been refactored away. This may make existing flows vulnerable to stack overflows if you use many synchronous functions in series. Use `ensureAsync` to work around this. ([#696](https://github.com/caolan/async/issues/696), [#704](https://github.com/caolan/async/issues/704), [#1049](https://github.com/caolan/async/issues/1049), [#1050](https://github.com/caolan/async/issues/1050))
119 +- `map` used to return an object when iterating over an object. `map` now always returns an array, like in other libraries. The previous object behavior has been split out into `mapValues`. ([#1157](https://github.com/caolan/async/issues/1157), [#1177](https://github.com/caolan/async/issues/1177))
120 +- `filter`, `reject`, `some`, `every`, `detect` and their families like `{METHOD}Series` and `{METHOD}Limit` now expect an error as the first callback argument, rather than just a simple boolean. Pass `null` as the first argument, or use `fs.access` instead of `fs.exists`. ([#118](https://github.com/caolan/async/issues/118), [#774](https://github.com/caolan/async/issues/774), [#1028](https://github.com/caolan/async/issues/1028), [#1041](https://github.com/caolan/async/issues/1041))
121 +- `{METHOD}` and `{METHOD}Series` are now implemented in terms of `{METHOD}Limit`. This is a major internal simplification, and is not expected to cause many problems, but it does subtly affect how functions execute internally. ([#778](https://github.com/caolan/async/issues/778), [#847](https://github.com/caolan/async/issues/847))
122 +- `retry`'s callback is now optional. Previously, omitting the callback would partially apply the function, meaning it could be passed directly as a task to `series` or `auto`. The partially applied "control-flow" behavior has been separated out into `retryable`. ([#1054](https://github.com/caolan/async/issues/1054), [#1058](https://github.com/caolan/async/issues/1058))
123 +- The test function for `whilst`, `until`, and `during` used to be passed non-error args from the iteratee function's callback, but this led to weirdness where the first call of the test function would be passed no args. We have made it so the test function is never passed extra arguments, and only the `doWhilst`, `doUntil`, and `doDuring` functions pass iteratee callback arguments to the test function ([#1217](https://github.com/caolan/async/issues/1217), [#1224](https://github.com/caolan/async/issues/1224))
124 +- The `q.tasks` array has been renamed `q._tasks` and is now implemented as a doubly linked list (DLL). Any code that used to interact with this array will need to be updated to either use the provided helpers or support DLLs ([#1205](https://github.com/caolan/async/issues/1205)).
125 +- The timing of the `q.saturated()` callback in a `queue` has been modified to better reflect when tasks pushed to the queue will start queueing. ([#724](https://github.com/caolan/async/issues/724), [#1078](https://github.com/caolan/async/issues/1078))
126 +- Removed `iterator` method in favour of [ES2015 iterator protocol](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Guide/Iterators_and_Generators ) which natively supports arrays ([#1237](https://github.com/caolan/async/issues/1237))
127 +- Dropped support for Component, Jam, SPM, and Volo ([#1175](https://github.com/caolan/async/issues/1175), #[#176](https://github.com/caolan/async/issues/176))
128 +
129 +## Bug Fixes
130 +
131 +- Improved handling of no dependency cases in `auto` & `autoInject` ([#1147](https://github.com/caolan/async/issues/1147)).
132 +- Fixed a bug where the callback generated by `asyncify` with `Promises` could resolve twice ([#1197](https://github.com/caolan/async/issues/1197)).
133 +- Fixed several documented optional callbacks not actually being optional ([#1223](https://github.com/caolan/async/issues/1223)).
134 +
135 +## Other
136 +
137 +- Added `someSeries` and `everySeries` for symmetry, as well as a complete set of `any`/`anyLimit`/`anySeries` and `all`/`/allLmit`/`allSeries` aliases.
138 +- Added `find` as an alias for `detect. (as well as `findLimit` and `findSeries`).
139 +- Various doc fixes ([#1005](https://github.com/caolan/async/issues/1005), [#1008](https://github.com/caolan/async/issues/1008), [#1010](https://github.com/caolan/async/issues/1010), [#1015](https://github.com/caolan/async/issues/1015), [#1021](https://github.com/caolan/async/issues/1021), [#1037](https://github.com/caolan/async/issues/1037), [#1039](https://github.com/caolan/async/issues/1039), [#1051](https://github.com/caolan/async/issues/1051), [#1102](https://github.com/caolan/async/issues/1102), [#1107](https://github.com/caolan/async/issues/1107), [#1121](https://github.com/caolan/async/issues/1121), [#1123](https://github.com/caolan/async/issues/1123), [#1129](https://github.com/caolan/async/issues/1129), [#1135](https://github.com/caolan/async/issues/1135), [#1138](https://github.com/caolan/async/issues/1138), [#1141](https://github.com/caolan/async/issues/1141), [#1153](https://github.com/caolan/async/issues/1153), [#1216](https://github.com/caolan/async/issues/1216), [#1217](https://github.com/caolan/async/issues/1217), [#1232](https://github.com/caolan/async/issues/1232), [#1233](https://github.com/caolan/async/issues/1233), [#1236](https://github.com/caolan/async/issues/1236), [#1238](https://github.com/caolan/async/issues/1238))
140 +
141 +Thank you [**@aearly**](github.com/aearly) and [**@megawac**](github.com/megawac) for taking the lead on version 2 of async.
142 +
143 +------------------------------------------
144 +
145 +# v1.5.2
146 +- Allow using `"constructor"` as an argument in `memoize` ([#998](https://github.com/caolan/async/issues/998))
147 +- Give a better error messsage when `auto` dependency checking fails ([#994](https://github.com/caolan/async/issues/994))
148 +- Various doc updates ([#936](https://github.com/caolan/async/issues/936), [#956](https://github.com/caolan/async/issues/956), [#979](https://github.com/caolan/async/issues/979), [#1002](https://github.com/caolan/async/issues/1002))
149 +
150 +# v1.5.1
151 +- Fix issue with `pause` in `queue` with concurrency enabled ([#946](https://github.com/caolan/async/issues/946))
152 +- `while` and `until` now pass the final result to callback ([#963](https://github.com/caolan/async/issues/963))
153 +- `auto` will properly handle concurrency when there is no callback ([#966](https://github.com/caolan/async/issues/966))
154 +- `auto` will no. properly stop execution when an error occurs ([#988](https://github.com/caolan/async/issues/988), [#993](https://github.com/caolan/async/issues/993))
155 +- Various doc fixes ([#971](https://github.com/caolan/async/issues/971), [#980](https://github.com/caolan/async/issues/980))
156 +
157 +# v1.5.0
158 +
159 +- Added `transform`, analogous to [`_.transform`](http://lodash.com/docs#transform) ([#892](https://github.com/caolan/async/issues/892))
160 +- `map` now returns an object when an object is passed in, rather than array with non-numeric keys. `map` will begin always returning an array with numeric indexes in the next major release. ([#873](https://github.com/caolan/async/issues/873))
161 +- `auto` now accepts an optional `concurrency` argument to limit the number o. running tasks ([#637](https://github.com/caolan/async/issues/637))
162 +- Added `queue#workersList()`, to retrieve the lis. of currently running tasks. ([#891](https://github.com/caolan/async/issues/891))
163 +- Various code simplifications ([#896](https://github.com/caolan/async/issues/896), [#904](https://github.com/caolan/async/issues/904))
164 +- Various doc fixes :scroll: ([#890](https://github.com/caolan/async/issues/890), [#894](https://github.com/caolan/async/issues/894), [#903](https://github.com/caolan/async/issues/903), [#905](https://github.com/caolan/async/issues/905), [#912](https://github.com/caolan/async/issues/912))
165 +
166 +# v1.4.2
167 +
168 +- Ensure coverage files don't get published on npm ([#879](https://github.com/caolan/async/issues/879))
169 +
170 +# v1.4.1
171 +
172 +- Add in overlooked `detectLimit` method ([#866](https://github.com/caolan/async/issues/866))
173 +- Removed unnecessary files from npm releases ([#861](https://github.com/caolan/async/issues/861))
174 +- Removed usage of a reserved word to prevent :boom: in older environments ([#870](https://github.com/caolan/async/issues/870))
175 +
176 +# v1.4.0
177 +
178 +- `asyncify` now supports promises ([#840](https://github.com/caolan/async/issues/840))
179 +- Added `Limit` versions of `filter` and `reject` ([#836](https://github.com/caolan/async/issues/836))
180 +- Add `Limit` versions of `detect`, `some` and `every` ([#828](https://github.com/caolan/async/issues/828), [#829](https://github.com/caolan/async/issues/829))
181 +- `some`, `every` and `detect` now short circuit early ([#828](https://github.com/caolan/async/issues/828), [#829](https://github.com/caolan/async/issues/829))
182 +- Improve detection of the global object ([#804](https://github.com/caolan/async/issues/804)), enabling use in WebWorkers
183 +- `whilst` now called with arguments from iterator ([#823](https://github.com/caolan/async/issues/823))
184 +- `during` now gets called with arguments from iterator ([#824](https://github.com/caolan/async/issues/824))
185 +- Code simplifications and optimizations aplenty ([diff](https://github.com/caolan/async/compare/v1.3.0...v1.4.0))
186 +
187 +
188 +# v1.3.0
189 +
190 +New Features:
191 +- Added `constant`
192 +- Added `asyncify`/`wrapSync` for making sync functions work with callbacks. ([#671](https://github.com/caolan/async/issues/671), [#806](https://github.com/caolan/async/issues/806))
193 +- Added `during` and `doDuring`, which are like `whilst` with an async truth test. ([#800](https://github.com/caolan/async/issues/800))
194 +- `retry` now accepts an `interval` parameter to specify a delay between retries. ([#793](https://github.com/caolan/async/issues/793))
195 +- `async` should work better in Web Workers due to better `root` detection ([#804](https://github.com/caolan/async/issues/804))
196 +- Callbacks are now optional in `whilst`, `doWhilst`, `until`, and `doUntil` ([#642](https://github.com/caolan/async/issues/642))
197 +- Various internal updates ([#786](https://github.com/caolan/async/issues/786), [#801](https://github.com/caolan/async/issues/801), [#802](https://github.com/caolan/async/issues/802), [#803](https://github.com/caolan/async/issues/803))
198 +- Various doc fixes ([#790](https://github.com/caolan/async/issues/790), [#794](https://github.com/caolan/async/issues/794))
199 +
200 +Bug Fixes:
201 +- `cargo` now exposes the `payload` size, and `cargo.payload` can be changed on the fly after the `cargo` is created. ([#740](https://github.com/caolan/async/issues/740), [#744](https://github.com/caolan/async/issues/744), [#783](https://github.com/caolan/async/issues/783))
202 +
203 +
204 +# v1.2.1
205 +
206 +Bug Fix:
207 +
208 +- Small regression with synchronous iterator behavior in `eachSeries` with a 1-element array. Before 1.1.0, `eachSeries`'s callback was called on the same tick, which this patch restores. In 2.0.0, it will be called on the next tick. ([#782](https://github.com/caolan/async/issues/782))
209 +
210 +
211 +# v1.2.0
212 +
213 +New Features:
214 +
215 +- Added `timesLimit` ([#743](https://github.com/caolan/async/issues/743))
216 +- `concurrency` can be changed after initialization in `queue` by setting `q.concurrency`. The new concurrency will be reflected the next time a task is processed. ([#747](https://github.com/caolan/async/issues/747), [#772](https://github.com/caolan/async/issues/772))
217 +
218 +Bug Fixes:
219 +
220 +- Fixed a regression in `each` and family with empty arrays that have additional properties. ([#775](https://github.com/caolan/async/issues/775), [#777](https://github.com/caolan/async/issues/777))
221 +
222 +
223 +# v1.1.1
224 +
225 +Bug Fix:
226 +
227 +- Small regression with synchronous iterator behavior in `eachSeries` with a 1-element array. Before 1.1.0, `eachSeries`'s callback was called on the same tick, which this patch restores. In 2.0.0, it will be called on the next tick. ([#782](https://github.com/caolan/async/issues/782))
228 +
229 +
230 +# v1.1.0
231 +
232 +New Features:
233 +
234 +- `cargo` now supports all of the same methods and event callbacks as `queue`.
235 +- Added `ensureAsync` - A wrapper that ensures an async function calls its callback on a later tick. ([#769](https://github.com/caolan/async/issues/769))
236 +- Optimized `map`, `eachOf`, and `waterfall` families of functions
237 +- Passing a `null` or `undefined` array to `map`, `each`, `parallel` and families will be treated as an empty array ([#667](https://github.com/caolan/async/issues/667)).
238 +- The callback is now optional for the composed results of `compose` and `seq`. ([#618](https://github.com/caolan/async/issues/618))
239 +- Reduced file size by 4kb, (minified version by 1kb)
240 +- Added code coverage through `nyc` and `coveralls` ([#768](https://github.com/caolan/async/issues/768))
241 +
242 +Bug Fixes:
243 +
244 +- `forever` will no longer stack overflow with a synchronous iterator ([#622](https://github.com/caolan/async/issues/622))
245 +- `eachLimit` and other limit functions will stop iterating once an error occurs ([#754](https://github.com/caolan/async/issues/754))
246 +- Always pass `null` in callbacks when there is no error ([#439](https://github.com/caolan/async/issues/439))
247 +- Ensure proper conditions when calling `drain()` after pushing an empty data set to a queue ([#668](https://github.com/caolan/async/issues/668))
248 +- `each` and family will properly handle an empty array ([#578](https://github.com/caolan/async/issues/578))
249 +- `eachSeries` and family will finish if the underlying array is modified during execution ([#557](https://github.com/caolan/async/issues/557))
250 +- `queue` will throw if a non-function is passed to `q.push()` ([#593](https://github.com/caolan/async/issues/593))
251 +- Doc fixes ([#629](https://github.com/caolan/async/issues/629), [#766](https://github.com/caolan/async/issues/766))
252 +
253 +
254 +# v1.0.0
255 +
256 +No known breaking changes, we are simply complying with semver from here on out.
257 +
258 +Changes:
259 +
260 +- Start using a changelog!
261 +- Add `forEachOf` for iterating over Objects (or to iterate Arrays with indexes available) ([#168](https://github.com/caolan/async/issues/168) [#704](https://github.com/caolan/async/issues/704) [#321](https://github.com/caolan/async/issues/321))
262 +- Detect deadlocks in `auto` ([#663](https://github.com/caolan/async/issues/663))
263 +- Better support for require.js ([#527](https://github.com/caolan/async/issues/527))
264 +- Throw if queue created with concurrency `0` ([#714](https://github.com/caolan/async/issues/714))
265 +- Fix unneeded iteration in `queue.resume()` ([#758](https://github.com/caolan/async/issues/758))
266 +- Guard against timer mocking overriding `setImmediate` ([#609](https://github.com/caolan/async/issues/609) [#611](https://github.com/caolan/async/issues/611))
267 +- Miscellaneous doc fixes ([#542](https://github.com/caolan/async/issues/542) [#596](https://github.com/caolan/async/issues/596) [#615](https://github.com/caolan/async/issues/615) [#628](https://github.com/caolan/async/issues/628) [#631](https://github.com/caolan/async/issues/631) [#690](https://github.com/caolan/async/issues/690) [#729](https://github.com/caolan/async/issues/729))
268 +- Use single noop function internally ([#546](https://github.com/caolan/async/issues/546))
269 +- Optimize internal `_each`, `_map` and `_keys` functions.
1 +Copyright (c) 2010-2018 Caolan McMahon
2 +
3 +Permission is hereby granted, free of charge, to any person obtaining a copy
4 +of this software and associated documentation files (the "Software"), to deal
5 +in the Software without restriction, including without limitation the rights
6 +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
7 +copies of the Software, and to permit persons to whom the Software is
8 +furnished to do so, subject to the following conditions:
9 +
10 +The above copyright notice and this permission notice shall be included in
11 +all copies or substantial portions of the Software.
12 +
13 +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
14 +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
15 +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
16 +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
17 +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
18 +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
19 +THE SOFTWARE.
1 +![Async Logo](https://raw.githubusercontent.com/caolan/async/master/logo/async-logo_readme.jpg)
2 +
3 +[![Build Status via Travis CI](https://travis-ci.org/caolan/async.svg?branch=master)](https://travis-ci.org/caolan/async)
4 +[![NPM version](https://img.shields.io/npm/v/async.svg)](https://www.npmjs.com/package/async)
5 +[![Coverage Status](https://coveralls.io/repos/caolan/async/badge.svg?branch=master)](https://coveralls.io/r/caolan/async?branch=master)
6 +[![Join the chat at https://gitter.im/caolan/async](https://badges.gitter.im/Join%20Chat.svg)](https://gitter.im/caolan/async?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge&utm_content=badge)
7 +[![libhive - Open source examples](https://www.libhive.com/providers/npm/packages/async/examples/badge.svg)](https://www.libhive.com/providers/npm/packages/async)
8 +[![jsDelivr Hits](https://data.jsdelivr.com/v1/package/npm/async/badge?style=rounded)](https://www.jsdelivr.com/package/npm/async)
9 +
10 +
11 +Async is a utility module which provides straight-forward, powerful functions for working with [asynchronous JavaScript](http://caolan.github.io/async/global.html). Although originally designed for use with [Node.js](https://nodejs.org/) and installable via `npm install --save async`, it can also be used directly in the browser.
12 +
13 +This version of the package is optimized for the Node.js environment. If you use Async with webpack, install [`async-es`](https://www.npmjs.com/package/async-es) instead.
14 +
15 +For Documentation, visit <https://caolan.github.io/async/>
16 +
17 +*For Async v1.5.x documentation, go [HERE](https://github.com/caolan/async/blob/v1.5.2/README.md)*
18 +
19 +
20 +```javascript
21 +// for use with Node-style callbacks...
22 +var async = require("async");
23 +
24 +var obj = {dev: "/dev.json", test: "/test.json", prod: "/prod.json"};
25 +var configs = {};
26 +
27 +async.forEachOf(obj, (value, key, callback) => {
28 + fs.readFile(__dirname + value, "utf8", (err, data) => {
29 + if (err) return callback(err);
30 + try {
31 + configs[key] = JSON.parse(data);
32 + } catch (e) {
33 + return callback(e);
34 + }
35 + callback();
36 + });
37 +}, err => {
38 + if (err) console.error(err.message);
39 + // configs is now a map of JSON data
40 + doSomethingWith(configs);
41 +});
42 +```
43 +
44 +```javascript
45 +var async = require("async");
46 +
47 +// ...or ES2017 async functions
48 +async.mapLimit(urls, 5, async function(url) {
49 + const response = await fetch(url)
50 + return response.body
51 +}, (err, results) => {
52 + if (err) throw err
53 + // results is now an array of the response bodies
54 + console.log(results)
55 +})
56 +```
1 +'use strict';
2 +
3 +Object.defineProperty(exports, "__esModule", {
4 + value: true
5 +});
6 +
7 +var _createTester = require('./internal/createTester');
8 +
9 +var _createTester2 = _interopRequireDefault(_createTester);
10 +
11 +var _doParallel = require('./internal/doParallel');
12 +
13 +var _doParallel2 = _interopRequireDefault(_doParallel);
14 +
15 +var _notId = require('./internal/notId');
16 +
17 +var _notId2 = _interopRequireDefault(_notId);
18 +
19 +function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }
20 +
21 +/**
22 + * Returns `true` if every element in `coll` satisfies an async test. If any
23 + * iteratee call returns `false`, the main `callback` is immediately called.
24 + *
25 + * @name every
26 + * @static
27 + * @memberOf module:Collections
28 + * @method
29 + * @alias all
30 + * @category Collection
31 + * @param {Array|Iterable|Object} coll - A collection to iterate over.
32 + * @param {AsyncFunction} iteratee - An async truth test to apply to each item
33 + * in the collection in parallel.
34 + * The iteratee must complete with a boolean result value.
35 + * Invoked with (item, callback).
36 + * @param {Function} [callback] - A callback which is called after all the
37 + * `iteratee` functions have finished. Result will be either `true` or `false`
38 + * depending on the values of the async tests. Invoked with (err, result).
39 + * @example
40 + *
41 + * async.every(['file1','file2','file3'], function(filePath, callback) {
42 + * fs.access(filePath, function(err) {
43 + * callback(null, !err)
44 + * });
45 + * }, function(err, result) {
46 + * // if result is true then every file exists
47 + * });
48 + */
49 +exports.default = (0, _doParallel2.default)((0, _createTester2.default)(_notId2.default, _notId2.default));
50 +module.exports = exports['default'];
...\ No newline at end of file ...\ No newline at end of file
1 +'use strict';
2 +
3 +Object.defineProperty(exports, "__esModule", {
4 + value: true
5 +});
6 +
7 +var _createTester = require('./internal/createTester');
8 +
9 +var _createTester2 = _interopRequireDefault(_createTester);
10 +
11 +var _doParallelLimit = require('./internal/doParallelLimit');
12 +
13 +var _doParallelLimit2 = _interopRequireDefault(_doParallelLimit);
14 +
15 +var _notId = require('./internal/notId');
16 +
17 +var _notId2 = _interopRequireDefault(_notId);
18 +
19 +function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }
20 +
21 +/**
22 + * The same as [`every`]{@link module:Collections.every} but runs a maximum of `limit` async operations at a time.
23 + *
24 + * @name everyLimit
25 + * @static
26 + * @memberOf module:Collections
27 + * @method
28 + * @see [async.every]{@link module:Collections.every}
29 + * @alias allLimit
30 + * @category Collection
31 + * @param {Array|Iterable|Object} coll - A collection to iterate over.
32 + * @param {number} limit - The maximum number of async operations at a time.
33 + * @param {AsyncFunction} iteratee - An async truth test to apply to each item
34 + * in the collection in parallel.
35 + * The iteratee must complete with a boolean result value.
36 + * Invoked with (item, callback).
37 + * @param {Function} [callback] - A callback which is called after all the
38 + * `iteratee` functions have finished. Result will be either `true` or `false`
39 + * depending on the values of the async tests. Invoked with (err, result).
40 + */
41 +exports.default = (0, _doParallelLimit2.default)((0, _createTester2.default)(_notId2.default, _notId2.default));
42 +module.exports = exports['default'];
...\ No newline at end of file ...\ No newline at end of file
1 +'use strict';
2 +
3 +Object.defineProperty(exports, "__esModule", {
4 + value: true
5 +});
6 +
7 +var _everyLimit = require('./everyLimit');
8 +
9 +var _everyLimit2 = _interopRequireDefault(_everyLimit);
10 +
11 +var _doLimit = require('./internal/doLimit');
12 +
13 +var _doLimit2 = _interopRequireDefault(_doLimit);
14 +
15 +function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }
16 +
17 +/**
18 + * The same as [`every`]{@link module:Collections.every} but runs only a single async operation at a time.
19 + *
20 + * @name everySeries
21 + * @static
22 + * @memberOf module:Collections
23 + * @method
24 + * @see [async.every]{@link module:Collections.every}
25 + * @alias allSeries
26 + * @category Collection
27 + * @param {Array|Iterable|Object} coll - A collection to iterate over.
28 + * @param {AsyncFunction} iteratee - An async truth test to apply to each item
29 + * in the collection in series.
30 + * The iteratee must complete with a boolean result value.
31 + * Invoked with (item, callback).
32 + * @param {Function} [callback] - A callback which is called after all the
33 + * `iteratee` functions have finished. Result will be either `true` or `false`
34 + * depending on the values of the async tests. Invoked with (err, result).
35 + */
36 +exports.default = (0, _doLimit2.default)(_everyLimit2.default, 1);
37 +module.exports = exports['default'];
...\ No newline at end of file ...\ No newline at end of file
1 +'use strict';
2 +
3 +Object.defineProperty(exports, "__esModule", {
4 + value: true
5 +});
6 +
7 +var _createTester = require('./internal/createTester');
8 +
9 +var _createTester2 = _interopRequireDefault(_createTester);
10 +
11 +var _doParallel = require('./internal/doParallel');
12 +
13 +var _doParallel2 = _interopRequireDefault(_doParallel);
14 +
15 +var _identity = require('lodash/identity');
16 +
17 +var _identity2 = _interopRequireDefault(_identity);
18 +
19 +function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }
20 +
21 +/**
22 + * Returns `true` if at least one element in the `coll` satisfies an async test.
23 + * If any iteratee call returns `true`, the main `callback` is immediately
24 + * called.
25 + *
26 + * @name some
27 + * @static
28 + * @memberOf module:Collections
29 + * @method
30 + * @alias any
31 + * @category Collection
32 + * @param {Array|Iterable|Object} coll - A collection to iterate over.
33 + * @param {AsyncFunction} iteratee - An async truth test to apply to each item
34 + * in the collections in parallel.
35 + * The iteratee should complete with a boolean `result` value.
36 + * Invoked with (item, callback).
37 + * @param {Function} [callback] - A callback which is called as soon as any
38 + * iteratee returns `true`, or after all the iteratee functions have finished.
39 + * Result will be either `true` or `false` depending on the values of the async
40 + * tests. Invoked with (err, result).
41 + * @example
42 + *
43 + * async.some(['file1','file2','file3'], function(filePath, callback) {
44 + * fs.access(filePath, function(err) {
45 + * callback(null, !err)
46 + * });
47 + * }, function(err, result) {
48 + * // if result is true then at least one of the files exists
49 + * });
50 + */
51 +exports.default = (0, _doParallel2.default)((0, _createTester2.default)(Boolean, _identity2.default));
52 +module.exports = exports['default'];
...\ No newline at end of file ...\ No newline at end of file
1 +'use strict';
2 +
3 +Object.defineProperty(exports, "__esModule", {
4 + value: true
5 +});
6 +
7 +var _createTester = require('./internal/createTester');
8 +
9 +var _createTester2 = _interopRequireDefault(_createTester);
10 +
11 +var _doParallelLimit = require('./internal/doParallelLimit');
12 +
13 +var _doParallelLimit2 = _interopRequireDefault(_doParallelLimit);
14 +
15 +var _identity = require('lodash/identity');
16 +
17 +var _identity2 = _interopRequireDefault(_identity);
18 +
19 +function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }
20 +
21 +/**
22 + * The same as [`some`]{@link module:Collections.some} but runs a maximum of `limit` async operations at a time.
23 + *
24 + * @name someLimit
25 + * @static
26 + * @memberOf module:Collections
27 + * @method
28 + * @see [async.some]{@link module:Collections.some}
29 + * @alias anyLimit
30 + * @category Collection
31 + * @param {Array|Iterable|Object} coll - A collection to iterate over.
32 + * @param {number} limit - The maximum number of async operations at a time.
33 + * @param {AsyncFunction} iteratee - An async truth test to apply to each item
34 + * in the collections in parallel.
35 + * The iteratee should complete with a boolean `result` value.
36 + * Invoked with (item, callback).
37 + * @param {Function} [callback] - A callback which is called as soon as any
38 + * iteratee returns `true`, or after all the iteratee functions have finished.
39 + * Result will be either `true` or `false` depending on the values of the async
40 + * tests. Invoked with (err, result).
41 + */
42 +exports.default = (0, _doParallelLimit2.default)((0, _createTester2.default)(Boolean, _identity2.default));
43 +module.exports = exports['default'];
...\ No newline at end of file ...\ No newline at end of file
1 +'use strict';
2 +
3 +Object.defineProperty(exports, "__esModule", {
4 + value: true
5 +});
6 +
7 +var _someLimit = require('./someLimit');
8 +
9 +var _someLimit2 = _interopRequireDefault(_someLimit);
10 +
11 +var _doLimit = require('./internal/doLimit');
12 +
13 +var _doLimit2 = _interopRequireDefault(_doLimit);
14 +
15 +function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }
16 +
17 +/**
18 + * The same as [`some`]{@link module:Collections.some} but runs only a single async operation at a time.
19 + *
20 + * @name someSeries
21 + * @static
22 + * @memberOf module:Collections
23 + * @method
24 + * @see [async.some]{@link module:Collections.some}
25 + * @alias anySeries
26 + * @category Collection
27 + * @param {Array|Iterable|Object} coll - A collection to iterate over.
28 + * @param {AsyncFunction} iteratee - An async truth test to apply to each item
29 + * in the collections in series.
30 + * The iteratee should complete with a boolean `result` value.
31 + * Invoked with (item, callback).
32 + * @param {Function} [callback] - A callback which is called as soon as any
33 + * iteratee returns `true`, or after all the iteratee functions have finished.
34 + * Result will be either `true` or `false` depending on the values of the async
35 + * tests. Invoked with (err, result).
36 + */
37 +exports.default = (0, _doLimit2.default)(_someLimit2.default, 1);
38 +module.exports = exports['default'];
...\ No newline at end of file ...\ No newline at end of file
1 +'use strict';
2 +
3 +Object.defineProperty(exports, "__esModule", {
4 + value: true
5 +});
6 +
7 +exports.default = function (fn /*, ...args*/) {
8 + var args = (0, _slice2.default)(arguments, 1);
9 + return function () /*callArgs*/{
10 + var callArgs = (0, _slice2.default)(arguments);
11 + return fn.apply(null, args.concat(callArgs));
12 + };
13 +};
14 +
15 +var _slice = require('./internal/slice');
16 +
17 +var _slice2 = _interopRequireDefault(_slice);
18 +
19 +function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }
20 +
21 +;
22 +
23 +/**
24 + * Creates a continuation function with some arguments already applied.
25 + *
26 + * Useful as a shorthand when combined with other control flow functions. Any
27 + * arguments passed to the returned function are added to the arguments
28 + * originally passed to apply.
29 + *
30 + * @name apply
31 + * @static
32 + * @memberOf module:Utils
33 + * @method
34 + * @category Util
35 + * @param {Function} fn - The function you want to eventually apply all
36 + * arguments to. Invokes with (arguments...).
37 + * @param {...*} arguments... - Any number of arguments to automatically apply
38 + * when the continuation is called.
39 + * @returns {Function} the partially-applied function
40 + * @example
41 + *
42 + * // using apply
43 + * async.parallel([
44 + * async.apply(fs.writeFile, 'testfile1', 'test1'),
45 + * async.apply(fs.writeFile, 'testfile2', 'test2')
46 + * ]);
47 + *
48 + *
49 + * // the same process without using apply
50 + * async.parallel([
51 + * function(callback) {
52 + * fs.writeFile('testfile1', 'test1', callback);
53 + * },
54 + * function(callback) {
55 + * fs.writeFile('testfile2', 'test2', callback);
56 + * }
57 + * ]);
58 + *
59 + * // It's possible to pass any number of additional arguments when calling the
60 + * // continuation:
61 + *
62 + * node> var fn = async.apply(sys.puts, 'one');
63 + * node> fn('two', 'three');
64 + * one
65 + * two
66 + * three
67 + */
68 +module.exports = exports['default'];
...\ No newline at end of file ...\ No newline at end of file
1 +'use strict';
2 +
3 +Object.defineProperty(exports, "__esModule", {
4 + value: true
5 +});
6 +
7 +var _applyEach = require('./internal/applyEach');
8 +
9 +var _applyEach2 = _interopRequireDefault(_applyEach);
10 +
11 +var _map = require('./map');
12 +
13 +var _map2 = _interopRequireDefault(_map);
14 +
15 +function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }
16 +
17 +/**
18 + * Applies the provided arguments to each function in the array, calling
19 + * `callback` after all functions have completed. If you only provide the first
20 + * argument, `fns`, then it will return a function which lets you pass in the
21 + * arguments as if it were a single function call. If more arguments are
22 + * provided, `callback` is required while `args` is still optional.
23 + *
24 + * @name applyEach
25 + * @static
26 + * @memberOf module:ControlFlow
27 + * @method
28 + * @category Control Flow
29 + * @param {Array|Iterable|Object} fns - A collection of {@link AsyncFunction}s
30 + * to all call with the same arguments
31 + * @param {...*} [args] - any number of separate arguments to pass to the
32 + * function.
33 + * @param {Function} [callback] - the final argument should be the callback,
34 + * called when all functions have completed processing.
35 + * @returns {Function} - If only the first argument, `fns`, is provided, it will
36 + * return a function which lets you pass in the arguments as if it were a single
37 + * function call. The signature is `(..args, callback)`. If invoked with any
38 + * arguments, `callback` is required.
39 + * @example
40 + *
41 + * async.applyEach([enableSearch, updateSchema], 'bucket', callback);
42 + *
43 + * // partial application example:
44 + * async.each(
45 + * buckets,
46 + * async.applyEach([enableSearch, updateSchema]),
47 + * callback
48 + * );
49 + */
50 +exports.default = (0, _applyEach2.default)(_map2.default);
51 +module.exports = exports['default'];
...\ No newline at end of file ...\ No newline at end of file
1 +'use strict';
2 +
3 +Object.defineProperty(exports, "__esModule", {
4 + value: true
5 +});
6 +
7 +var _applyEach = require('./internal/applyEach');
8 +
9 +var _applyEach2 = _interopRequireDefault(_applyEach);
10 +
11 +var _mapSeries = require('./mapSeries');
12 +
13 +var _mapSeries2 = _interopRequireDefault(_mapSeries);
14 +
15 +function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }
16 +
17 +/**
18 + * The same as [`applyEach`]{@link module:ControlFlow.applyEach} but runs only a single async operation at a time.
19 + *
20 + * @name applyEachSeries
21 + * @static
22 + * @memberOf module:ControlFlow
23 + * @method
24 + * @see [async.applyEach]{@link module:ControlFlow.applyEach}
25 + * @category Control Flow
26 + * @param {Array|Iterable|Object} fns - A collection of {@link AsyncFunction}s to all
27 + * call with the same arguments
28 + * @param {...*} [args] - any number of separate arguments to pass to the
29 + * function.
30 + * @param {Function} [callback] - the final argument should be the callback,
31 + * called when all functions have completed processing.
32 + * @returns {Function} - If only the first argument is provided, it will return
33 + * a function which lets you pass in the arguments as if it were a single
34 + * function call.
35 + */
36 +exports.default = (0, _applyEach2.default)(_mapSeries2.default);
37 +module.exports = exports['default'];
...\ No newline at end of file ...\ No newline at end of file
1 +'use strict';
2 +
3 +Object.defineProperty(exports, "__esModule", {
4 + value: true
5 +});
6 +exports.default = asyncify;
7 +
8 +var _isObject = require('lodash/isObject');
9 +
10 +var _isObject2 = _interopRequireDefault(_isObject);
11 +
12 +var _initialParams = require('./internal/initialParams');
13 +
14 +var _initialParams2 = _interopRequireDefault(_initialParams);
15 +
16 +var _setImmediate = require('./internal/setImmediate');
17 +
18 +var _setImmediate2 = _interopRequireDefault(_setImmediate);
19 +
20 +function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }
21 +
22 +/**
23 + * Take a sync function and make it async, passing its return value to a
24 + * callback. This is useful for plugging sync functions into a waterfall,
25 + * series, or other async functions. Any arguments passed to the generated
26 + * function will be passed to the wrapped function (except for the final
27 + * callback argument). Errors thrown will be passed to the callback.
28 + *
29 + * If the function passed to `asyncify` returns a Promise, that promises's
30 + * resolved/rejected state will be used to call the callback, rather than simply
31 + * the synchronous return value.
32 + *
33 + * This also means you can asyncify ES2017 `async` functions.
34 + *
35 + * @name asyncify
36 + * @static
37 + * @memberOf module:Utils
38 + * @method
39 + * @alias wrapSync
40 + * @category Util
41 + * @param {Function} func - The synchronous function, or Promise-returning
42 + * function to convert to an {@link AsyncFunction}.
43 + * @returns {AsyncFunction} An asynchronous wrapper of the `func`. To be
44 + * invoked with `(args..., callback)`.
45 + * @example
46 + *
47 + * // passing a regular synchronous function
48 + * async.waterfall([
49 + * async.apply(fs.readFile, filename, "utf8"),
50 + * async.asyncify(JSON.parse),
51 + * function (data, next) {
52 + * // data is the result of parsing the text.
53 + * // If there was a parsing error, it would have been caught.
54 + * }
55 + * ], callback);
56 + *
57 + * // passing a function returning a promise
58 + * async.waterfall([
59 + * async.apply(fs.readFile, filename, "utf8"),
60 + * async.asyncify(function (contents) {
61 + * return db.model.create(contents);
62 + * }),
63 + * function (model, next) {
64 + * // `model` is the instantiated model object.
65 + * // If there was an error, this function would be skipped.
66 + * }
67 + * ], callback);
68 + *
69 + * // es2017 example, though `asyncify` is not needed if your JS environment
70 + * // supports async functions out of the box
71 + * var q = async.queue(async.asyncify(async function(file) {
72 + * var intermediateStep = await processFile(file);
73 + * return await somePromise(intermediateStep)
74 + * }));
75 + *
76 + * q.push(files);
77 + */
78 +function asyncify(func) {
79 + return (0, _initialParams2.default)(function (args, callback) {
80 + var result;
81 + try {
82 + result = func.apply(this, args);
83 + } catch (e) {
84 + return callback(e);
85 + }
86 + // if result is Promise object
87 + if ((0, _isObject2.default)(result) && typeof result.then === 'function') {
88 + result.then(function (value) {
89 + invokeCallback(callback, null, value);
90 + }, function (err) {
91 + invokeCallback(callback, err.message ? err : new Error(err));
92 + });
93 + } else {
94 + callback(null, result);
95 + }
96 + });
97 +}
98 +
99 +function invokeCallback(callback, error, value) {
100 + try {
101 + callback(error, value);
102 + } catch (e) {
103 + (0, _setImmediate2.default)(rethrow, e);
104 + }
105 +}
106 +
107 +function rethrow(error) {
108 + throw error;
109 +}
110 +module.exports = exports['default'];
...\ No newline at end of file ...\ No newline at end of file
1 +'use strict';
2 +
3 +Object.defineProperty(exports, "__esModule", {
4 + value: true
5 +});
6 +
7 +exports.default = function (tasks, concurrency, callback) {
8 + if (typeof concurrency === 'function') {
9 + // concurrency is optional, shift the args.
10 + callback = concurrency;
11 + concurrency = null;
12 + }
13 + callback = (0, _once2.default)(callback || _noop2.default);
14 + var keys = (0, _keys2.default)(tasks);
15 + var numTasks = keys.length;
16 + if (!numTasks) {
17 + return callback(null);
18 + }
19 + if (!concurrency) {
20 + concurrency = numTasks;
21 + }
22 +
23 + var results = {};
24 + var runningTasks = 0;
25 + var hasError = false;
26 +
27 + var listeners = Object.create(null);
28 +
29 + var readyTasks = [];
30 +
31 + // for cycle detection:
32 + var readyToCheck = []; // tasks that have been identified as reachable
33 + // without the possibility of returning to an ancestor task
34 + var uncheckedDependencies = {};
35 +
36 + (0, _baseForOwn2.default)(tasks, function (task, key) {
37 + if (!(0, _isArray2.default)(task)) {
38 + // no dependencies
39 + enqueueTask(key, [task]);
40 + readyToCheck.push(key);
41 + return;
42 + }
43 +
44 + var dependencies = task.slice(0, task.length - 1);
45 + var remainingDependencies = dependencies.length;
46 + if (remainingDependencies === 0) {
47 + enqueueTask(key, task);
48 + readyToCheck.push(key);
49 + return;
50 + }
51 + uncheckedDependencies[key] = remainingDependencies;
52 +
53 + (0, _arrayEach2.default)(dependencies, function (dependencyName) {
54 + if (!tasks[dependencyName]) {
55 + throw new Error('async.auto task `' + key + '` has a non-existent dependency `' + dependencyName + '` in ' + dependencies.join(', '));
56 + }
57 + addListener(dependencyName, function () {
58 + remainingDependencies--;
59 + if (remainingDependencies === 0) {
60 + enqueueTask(key, task);
61 + }
62 + });
63 + });
64 + });
65 +
66 + checkForDeadlocks();
67 + processQueue();
68 +
69 + function enqueueTask(key, task) {
70 + readyTasks.push(function () {
71 + runTask(key, task);
72 + });
73 + }
74 +
75 + function processQueue() {
76 + if (readyTasks.length === 0 && runningTasks === 0) {
77 + return callback(null, results);
78 + }
79 + while (readyTasks.length && runningTasks < concurrency) {
80 + var run = readyTasks.shift();
81 + run();
82 + }
83 + }
84 +
85 + function addListener(taskName, fn) {
86 + var taskListeners = listeners[taskName];
87 + if (!taskListeners) {
88 + taskListeners = listeners[taskName] = [];
89 + }
90 +
91 + taskListeners.push(fn);
92 + }
93 +
94 + function taskComplete(taskName) {
95 + var taskListeners = listeners[taskName] || [];
96 + (0, _arrayEach2.default)(taskListeners, function (fn) {
97 + fn();
98 + });
99 + processQueue();
100 + }
101 +
102 + function runTask(key, task) {
103 + if (hasError) return;
104 +
105 + var taskCallback = (0, _onlyOnce2.default)(function (err, result) {
106 + runningTasks--;
107 + if (arguments.length > 2) {
108 + result = (0, _slice2.default)(arguments, 1);
109 + }
110 + if (err) {
111 + var safeResults = {};
112 + (0, _baseForOwn2.default)(results, function (val, rkey) {
113 + safeResults[rkey] = val;
114 + });
115 + safeResults[key] = result;
116 + hasError = true;
117 + listeners = Object.create(null);
118 +
119 + callback(err, safeResults);
120 + } else {
121 + results[key] = result;
122 + taskComplete(key);
123 + }
124 + });
125 +
126 + runningTasks++;
127 + var taskFn = (0, _wrapAsync2.default)(task[task.length - 1]);
128 + if (task.length > 1) {
129 + taskFn(results, taskCallback);
130 + } else {
131 + taskFn(taskCallback);
132 + }
133 + }
134 +
135 + function checkForDeadlocks() {
136 + // Kahn's algorithm
137 + // https://en.wikipedia.org/wiki/Topological_sorting#Kahn.27s_algorithm
138 + // http://connalle.blogspot.com/2013/10/topological-sortingkahn-algorithm.html
139 + var currentTask;
140 + var counter = 0;
141 + while (readyToCheck.length) {
142 + currentTask = readyToCheck.pop();
143 + counter++;
144 + (0, _arrayEach2.default)(getDependents(currentTask), function (dependent) {
145 + if (--uncheckedDependencies[dependent] === 0) {
146 + readyToCheck.push(dependent);
147 + }
148 + });
149 + }
150 +
151 + if (counter !== numTasks) {
152 + throw new Error('async.auto cannot execute tasks due to a recursive dependency');
153 + }
154 + }
155 +
156 + function getDependents(taskName) {
157 + var result = [];
158 + (0, _baseForOwn2.default)(tasks, function (task, key) {
159 + if ((0, _isArray2.default)(task) && (0, _baseIndexOf2.default)(task, taskName, 0) >= 0) {
160 + result.push(key);
161 + }
162 + });
163 + return result;
164 + }
165 +};
166 +
167 +var _arrayEach = require('lodash/_arrayEach');
168 +
169 +var _arrayEach2 = _interopRequireDefault(_arrayEach);
170 +
171 +var _baseForOwn = require('lodash/_baseForOwn');
172 +
173 +var _baseForOwn2 = _interopRequireDefault(_baseForOwn);
174 +
175 +var _baseIndexOf = require('lodash/_baseIndexOf');
176 +
177 +var _baseIndexOf2 = _interopRequireDefault(_baseIndexOf);
178 +
179 +var _isArray = require('lodash/isArray');
180 +
181 +var _isArray2 = _interopRequireDefault(_isArray);
182 +
183 +var _keys = require('lodash/keys');
184 +
185 +var _keys2 = _interopRequireDefault(_keys);
186 +
187 +var _noop = require('lodash/noop');
188 +
189 +var _noop2 = _interopRequireDefault(_noop);
190 +
191 +var _slice = require('./internal/slice');
192 +
193 +var _slice2 = _interopRequireDefault(_slice);
194 +
195 +var _once = require('./internal/once');
196 +
197 +var _once2 = _interopRequireDefault(_once);
198 +
199 +var _onlyOnce = require('./internal/onlyOnce');
200 +
201 +var _onlyOnce2 = _interopRequireDefault(_onlyOnce);
202 +
203 +var _wrapAsync = require('./internal/wrapAsync');
204 +
205 +var _wrapAsync2 = _interopRequireDefault(_wrapAsync);
206 +
207 +function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }
208 +
209 +module.exports = exports['default'];
210 +
211 +/**
212 + * Determines the best order for running the {@link AsyncFunction}s in `tasks`, based on
213 + * their requirements. Each function can optionally depend on other functions
214 + * being completed first, and each function is run as soon as its requirements
215 + * are satisfied.
216 + *
217 + * If any of the {@link AsyncFunction}s pass an error to their callback, the `auto` sequence
218 + * will stop. Further tasks will not execute (so any other functions depending
219 + * on it will not run), and the main `callback` is immediately called with the
220 + * error.
221 + *
222 + * {@link AsyncFunction}s also receive an object containing the results of functions which
223 + * have completed so far as the first argument, if they have dependencies. If a
224 + * task function has no dependencies, it will only be passed a callback.
225 + *
226 + * @name auto
227 + * @static
228 + * @memberOf module:ControlFlow
229 + * @method
230 + * @category Control Flow
231 + * @param {Object} tasks - An object. Each of its properties is either a
232 + * function or an array of requirements, with the {@link AsyncFunction} itself the last item
233 + * in the array. The object's key of a property serves as the name of the task
234 + * defined by that property, i.e. can be used when specifying requirements for
235 + * other tasks. The function receives one or two arguments:
236 + * * a `results` object, containing the results of the previously executed
237 + * functions, only passed if the task has any dependencies,
238 + * * a `callback(err, result)` function, which must be called when finished,
239 + * passing an `error` (which can be `null`) and the result of the function's
240 + * execution.
241 + * @param {number} [concurrency=Infinity] - An optional `integer` for
242 + * determining the maximum number of tasks that can be run in parallel. By
243 + * default, as many as possible.
244 + * @param {Function} [callback] - An optional callback which is called when all
245 + * the tasks have been completed. It receives the `err` argument if any `tasks`
246 + * pass an error to their callback. Results are always returned; however, if an
247 + * error occurs, no further `tasks` will be performed, and the results object
248 + * will only contain partial results. Invoked with (err, results).
249 + * @returns undefined
250 + * @example
251 + *
252 + * async.auto({
253 + * // this function will just be passed a callback
254 + * readData: async.apply(fs.readFile, 'data.txt', 'utf-8'),
255 + * showData: ['readData', function(results, cb) {
256 + * // results.readData is the file's contents
257 + * // ...
258 + * }]
259 + * }, callback);
260 + *
261 + * async.auto({
262 + * get_data: function(callback) {
263 + * console.log('in get_data');
264 + * // async code to get some data
265 + * callback(null, 'data', 'converted to array');
266 + * },
267 + * make_folder: function(callback) {
268 + * console.log('in make_folder');
269 + * // async code to create a directory to store a file in
270 + * // this is run at the same time as getting the data
271 + * callback(null, 'folder');
272 + * },
273 + * write_file: ['get_data', 'make_folder', function(results, callback) {
274 + * console.log('in write_file', JSON.stringify(results));
275 + * // once there is some data and the directory exists,
276 + * // write the data to a file in the directory
277 + * callback(null, 'filename');
278 + * }],
279 + * email_link: ['write_file', function(results, callback) {
280 + * console.log('in email_link', JSON.stringify(results));
281 + * // once the file is written let's email a link to it...
282 + * // results.write_file contains the filename returned by write_file.
283 + * callback(null, {'file':results.write_file, 'email':'user@example.com'});
284 + * }]
285 + * }, function(err, results) {
286 + * console.log('err = ', err);
287 + * console.log('results = ', results);
288 + * });
289 + */
...\ No newline at end of file ...\ No newline at end of file
1 +'use strict';
2 +
3 +Object.defineProperty(exports, "__esModule", {
4 + value: true
5 +});
6 +exports.default = autoInject;
7 +
8 +var _auto = require('./auto');
9 +
10 +var _auto2 = _interopRequireDefault(_auto);
11 +
12 +var _baseForOwn = require('lodash/_baseForOwn');
13 +
14 +var _baseForOwn2 = _interopRequireDefault(_baseForOwn);
15 +
16 +var _arrayMap = require('lodash/_arrayMap');
17 +
18 +var _arrayMap2 = _interopRequireDefault(_arrayMap);
19 +
20 +var _isArray = require('lodash/isArray');
21 +
22 +var _isArray2 = _interopRequireDefault(_isArray);
23 +
24 +var _trim = require('lodash/trim');
25 +
26 +var _trim2 = _interopRequireDefault(_trim);
27 +
28 +var _wrapAsync = require('./internal/wrapAsync');
29 +
30 +var _wrapAsync2 = _interopRequireDefault(_wrapAsync);
31 +
32 +function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }
33 +
34 +var FN_ARGS = /^(?:async\s+)?(function)?\s*[^\(]*\(\s*([^\)]*)\)/m;
35 +var FN_ARG_SPLIT = /,/;
36 +var FN_ARG = /(=.+)?(\s*)$/;
37 +var STRIP_COMMENTS = /((\/\/.*$)|(\/\*[\s\S]*?\*\/))/mg;
38 +
39 +function parseParams(func) {
40 + func = func.toString().replace(STRIP_COMMENTS, '');
41 + func = func.match(FN_ARGS)[2].replace(' ', '');
42 + func = func ? func.split(FN_ARG_SPLIT) : [];
43 + func = func.map(function (arg) {
44 + return (0, _trim2.default)(arg.replace(FN_ARG, ''));
45 + });
46 + return func;
47 +}
48 +
49 +/**
50 + * A dependency-injected version of the [async.auto]{@link module:ControlFlow.auto} function. Dependent
51 + * tasks are specified as parameters to the function, after the usual callback
52 + * parameter, with the parameter names matching the names of the tasks it
53 + * depends on. This can provide even more readable task graphs which can be
54 + * easier to maintain.
55 + *
56 + * If a final callback is specified, the task results are similarly injected,
57 + * specified as named parameters after the initial error parameter.
58 + *
59 + * The autoInject function is purely syntactic sugar and its semantics are
60 + * otherwise equivalent to [async.auto]{@link module:ControlFlow.auto}.
61 + *
62 + * @name autoInject
63 + * @static
64 + * @memberOf module:ControlFlow
65 + * @method
66 + * @see [async.auto]{@link module:ControlFlow.auto}
67 + * @category Control Flow
68 + * @param {Object} tasks - An object, each of whose properties is an {@link AsyncFunction} of
69 + * the form 'func([dependencies...], callback). The object's key of a property
70 + * serves as the name of the task defined by that property, i.e. can be used
71 + * when specifying requirements for other tasks.
72 + * * The `callback` parameter is a `callback(err, result)` which must be called
73 + * when finished, passing an `error` (which can be `null`) and the result of
74 + * the function's execution. The remaining parameters name other tasks on
75 + * which the task is dependent, and the results from those tasks are the
76 + * arguments of those parameters.
77 + * @param {Function} [callback] - An optional callback which is called when all
78 + * the tasks have been completed. It receives the `err` argument if any `tasks`
79 + * pass an error to their callback, and a `results` object with any completed
80 + * task results, similar to `auto`.
81 + * @example
82 + *
83 + * // The example from `auto` can be rewritten as follows:
84 + * async.autoInject({
85 + * get_data: function(callback) {
86 + * // async code to get some data
87 + * callback(null, 'data', 'converted to array');
88 + * },
89 + * make_folder: function(callback) {
90 + * // async code to create a directory to store a file in
91 + * // this is run at the same time as getting the data
92 + * callback(null, 'folder');
93 + * },
94 + * write_file: function(get_data, make_folder, callback) {
95 + * // once there is some data and the directory exists,
96 + * // write the data to a file in the directory
97 + * callback(null, 'filename');
98 + * },
99 + * email_link: function(write_file, callback) {
100 + * // once the file is written let's email a link to it...
101 + * // write_file contains the filename returned by write_file.
102 + * callback(null, {'file':write_file, 'email':'user@example.com'});
103 + * }
104 + * }, function(err, results) {
105 + * console.log('err = ', err);
106 + * console.log('email_link = ', results.email_link);
107 + * });
108 + *
109 + * // If you are using a JS minifier that mangles parameter names, `autoInject`
110 + * // will not work with plain functions, since the parameter names will be
111 + * // collapsed to a single letter identifier. To work around this, you can
112 + * // explicitly specify the names of the parameters your task function needs
113 + * // in an array, similar to Angular.js dependency injection.
114 + *
115 + * // This still has an advantage over plain `auto`, since the results a task
116 + * // depends on are still spread into arguments.
117 + * async.autoInject({
118 + * //...
119 + * write_file: ['get_data', 'make_folder', function(get_data, make_folder, callback) {
120 + * callback(null, 'filename');
121 + * }],
122 + * email_link: ['write_file', function(write_file, callback) {
123 + * callback(null, {'file':write_file, 'email':'user@example.com'});
124 + * }]
125 + * //...
126 + * }, function(err, results) {
127 + * console.log('err = ', err);
128 + * console.log('email_link = ', results.email_link);
129 + * });
130 + */
131 +function autoInject(tasks, callback) {
132 + var newTasks = {};
133 +
134 + (0, _baseForOwn2.default)(tasks, function (taskFn, key) {
135 + var params;
136 + var fnIsAsync = (0, _wrapAsync.isAsync)(taskFn);
137 + var hasNoDeps = !fnIsAsync && taskFn.length === 1 || fnIsAsync && taskFn.length === 0;
138 +
139 + if ((0, _isArray2.default)(taskFn)) {
140 + params = taskFn.slice(0, -1);
141 + taskFn = taskFn[taskFn.length - 1];
142 +
143 + newTasks[key] = params.concat(params.length > 0 ? newTask : taskFn);
144 + } else if (hasNoDeps) {
145 + // no dependencies, use the function as-is
146 + newTasks[key] = taskFn;
147 + } else {
148 + params = parseParams(taskFn);
149 + if (taskFn.length === 0 && !fnIsAsync && params.length === 0) {
150 + throw new Error("autoInject task functions require explicit parameters.");
151 + }
152 +
153 + // remove callback param
154 + if (!fnIsAsync) params.pop();
155 +
156 + newTasks[key] = params.concat(newTask);
157 + }
158 +
159 + function newTask(results, taskCb) {
160 + var newArgs = (0, _arrayMap2.default)(params, function (name) {
161 + return results[name];
162 + });
163 + newArgs.push(taskCb);
164 + (0, _wrapAsync2.default)(taskFn).apply(null, newArgs);
165 + }
166 + });
167 +
168 + (0, _auto2.default)(newTasks, callback);
169 +}
170 +module.exports = exports['default'];
...\ No newline at end of file ...\ No newline at end of file
1 +{
2 + "name": "async",
3 + "main": "dist/async.js",
4 + "ignore": [
5 + "bower_components",
6 + "lib",
7 + "mocha_test",
8 + "node_modules",
9 + "perf",
10 + "support",
11 + "**/.*",
12 + "*.config.js",
13 + "*.json",
14 + "index.js",
15 + "Makefile"
16 + ]
17 +}
1 +'use strict';
2 +
3 +Object.defineProperty(exports, "__esModule", {
4 + value: true
5 +});
6 +exports.default = cargo;
7 +
8 +var _queue = require('./internal/queue');
9 +
10 +var _queue2 = _interopRequireDefault(_queue);
11 +
12 +function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }
13 +
14 +/**
15 + * A cargo of tasks for the worker function to complete. Cargo inherits all of
16 + * the same methods and event callbacks as [`queue`]{@link module:ControlFlow.queue}.
17 + * @typedef {Object} CargoObject
18 + * @memberOf module:ControlFlow
19 + * @property {Function} length - A function returning the number of items
20 + * waiting to be processed. Invoke like `cargo.length()`.
21 + * @property {number} payload - An `integer` for determining how many tasks
22 + * should be process per round. This property can be changed after a `cargo` is
23 + * created to alter the payload on-the-fly.
24 + * @property {Function} push - Adds `task` to the `queue`. The callback is
25 + * called once the `worker` has finished processing the task. Instead of a
26 + * single task, an array of `tasks` can be submitted. The respective callback is
27 + * used for every task in the list. Invoke like `cargo.push(task, [callback])`.
28 + * @property {Function} saturated - A callback that is called when the
29 + * `queue.length()` hits the concurrency and further tasks will be queued.
30 + * @property {Function} empty - A callback that is called when the last item
31 + * from the `queue` is given to a `worker`.
32 + * @property {Function} drain - A callback that is called when the last item
33 + * from the `queue` has returned from the `worker`.
34 + * @property {Function} idle - a function returning false if there are items
35 + * waiting or being processed, or true if not. Invoke like `cargo.idle()`.
36 + * @property {Function} pause - a function that pauses the processing of tasks
37 + * until `resume()` is called. Invoke like `cargo.pause()`.
38 + * @property {Function} resume - a function that resumes the processing of
39 + * queued tasks when the queue is paused. Invoke like `cargo.resume()`.
40 + * @property {Function} kill - a function that removes the `drain` callback and
41 + * empties remaining tasks from the queue forcing it to go idle. Invoke like `cargo.kill()`.
42 + */
43 +
44 +/**
45 + * Creates a `cargo` object with the specified payload. Tasks added to the
46 + * cargo will be processed altogether (up to the `payload` limit). If the
47 + * `worker` is in progress, the task is queued until it becomes available. Once
48 + * the `worker` has completed some tasks, each callback of those tasks is
49 + * called. Check out [these](https://camo.githubusercontent.com/6bbd36f4cf5b35a0f11a96dcd2e97711ffc2fb37/68747470733a2f2f662e636c6f75642e6769746875622e636f6d2f6173736574732f313637363837312f36383130382f62626330636662302d356632392d313165322d393734662d3333393763363464633835382e676966) [animations](https://camo.githubusercontent.com/f4810e00e1c5f5f8addbe3e9f49064fd5d102699/68747470733a2f2f662e636c6f75642e6769746875622e636f6d2f6173736574732f313637363837312f36383130312f38346339323036362d356632392d313165322d383134662d3964336430323431336266642e676966)
50 + * for how `cargo` and `queue` work.
51 + *
52 + * While [`queue`]{@link module:ControlFlow.queue} passes only one task to one of a group of workers
53 + * at a time, cargo passes an array of tasks to a single worker, repeating
54 + * when the worker is finished.
55 + *
56 + * @name cargo
57 + * @static
58 + * @memberOf module:ControlFlow
59 + * @method
60 + * @see [async.queue]{@link module:ControlFlow.queue}
61 + * @category Control Flow
62 + * @param {AsyncFunction} worker - An asynchronous function for processing an array
63 + * of queued tasks. Invoked with `(tasks, callback)`.
64 + * @param {number} [payload=Infinity] - An optional `integer` for determining
65 + * how many tasks should be processed per round; if omitted, the default is
66 + * unlimited.
67 + * @returns {module:ControlFlow.CargoObject} A cargo object to manage the tasks. Callbacks can
68 + * attached as certain properties to listen for specific events during the
69 + * lifecycle of the cargo and inner queue.
70 + * @example
71 + *
72 + * // create a cargo object with payload 2
73 + * var cargo = async.cargo(function(tasks, callback) {
74 + * for (var i=0; i<tasks.length; i++) {
75 + * console.log('hello ' + tasks[i].name);
76 + * }
77 + * callback();
78 + * }, 2);
79 + *
80 + * // add some items
81 + * cargo.push({name: 'foo'}, function(err) {
82 + * console.log('finished processing foo');
83 + * });
84 + * cargo.push({name: 'bar'}, function(err) {
85 + * console.log('finished processing bar');
86 + * });
87 + * cargo.push({name: 'baz'}, function(err) {
88 + * console.log('finished processing baz');
89 + * });
90 + */
91 +function cargo(worker, payload) {
92 + return (0, _queue2.default)(worker, 1, payload);
93 +}
94 +module.exports = exports['default'];
...\ No newline at end of file ...\ No newline at end of file
1 +'use strict';
2 +
3 +Object.defineProperty(exports, "__esModule", {
4 + value: true
5 +});
6 +
7 +exports.default = function () /*...args*/{
8 + return _seq2.default.apply(null, (0, _slice2.default)(arguments).reverse());
9 +};
10 +
11 +var _seq = require('./seq');
12 +
13 +var _seq2 = _interopRequireDefault(_seq);
14 +
15 +var _slice = require('./internal/slice');
16 +
17 +var _slice2 = _interopRequireDefault(_slice);
18 +
19 +function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }
20 +
21 +;
22 +
23 +/**
24 + * Creates a function which is a composition of the passed asynchronous
25 + * functions. Each function consumes the return value of the function that
26 + * follows. Composing functions `f()`, `g()`, and `h()` would produce the result
27 + * of `f(g(h()))`, only this version uses callbacks to obtain the return values.
28 + *
29 + * Each function is executed with the `this` binding of the composed function.
30 + *
31 + * @name compose
32 + * @static
33 + * @memberOf module:ControlFlow
34 + * @method
35 + * @category Control Flow
36 + * @param {...AsyncFunction} functions - the asynchronous functions to compose
37 + * @returns {Function} an asynchronous function that is the composed
38 + * asynchronous `functions`
39 + * @example
40 + *
41 + * function add1(n, callback) {
42 + * setTimeout(function () {
43 + * callback(null, n + 1);
44 + * }, 10);
45 + * }
46 + *
47 + * function mul3(n, callback) {
48 + * setTimeout(function () {
49 + * callback(null, n * 3);
50 + * }, 10);
51 + * }
52 + *
53 + * var add1mul3 = async.compose(mul3, add1);
54 + * add1mul3(4, function (err, result) {
55 + * // result now equals 15
56 + * });
57 + */
58 +module.exports = exports['default'];
...\ No newline at end of file ...\ No newline at end of file
1 +'use strict';
2 +
3 +Object.defineProperty(exports, "__esModule", {
4 + value: true
5 +});
6 +
7 +var _doLimit = require('./internal/doLimit');
8 +
9 +var _doLimit2 = _interopRequireDefault(_doLimit);
10 +
11 +var _concatLimit = require('./concatLimit');
12 +
13 +var _concatLimit2 = _interopRequireDefault(_concatLimit);
14 +
15 +function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }
16 +
17 +/**
18 + * Applies `iteratee` to each item in `coll`, concatenating the results. Returns
19 + * the concatenated list. The `iteratee`s are called in parallel, and the
20 + * results are concatenated as they return. There is no guarantee that the
21 + * results array will be returned in the original order of `coll` passed to the
22 + * `iteratee` function.
23 + *
24 + * @name concat
25 + * @static
26 + * @memberOf module:Collections
27 + * @method
28 + * @category Collection
29 + * @param {Array|Iterable|Object} coll - A collection to iterate over.
30 + * @param {AsyncFunction} iteratee - A function to apply to each item in `coll`,
31 + * which should use an array as its result. Invoked with (item, callback).
32 + * @param {Function} [callback(err)] - A callback which is called after all the
33 + * `iteratee` functions have finished, or an error occurs. Results is an array
34 + * containing the concatenated results of the `iteratee` function. Invoked with
35 + * (err, results).
36 + * @example
37 + *
38 + * async.concat(['dir1','dir2','dir3'], fs.readdir, function(err, files) {
39 + * // files is now a list of filenames that exist in the 3 directories
40 + * });
41 + */
42 +exports.default = (0, _doLimit2.default)(_concatLimit2.default, Infinity);
43 +module.exports = exports['default'];
...\ No newline at end of file ...\ No newline at end of file
1 +'use strict';
2 +
3 +Object.defineProperty(exports, "__esModule", {
4 + value: true
5 +});
6 +
7 +exports.default = function (coll, limit, iteratee, callback) {
8 + callback = callback || _noop2.default;
9 + var _iteratee = (0, _wrapAsync2.default)(iteratee);
10 + (0, _mapLimit2.default)(coll, limit, function (val, callback) {
11 + _iteratee(val, function (err /*, ...args*/) {
12 + if (err) return callback(err);
13 + return callback(null, (0, _slice2.default)(arguments, 1));
14 + });
15 + }, function (err, mapResults) {
16 + var result = [];
17 + for (var i = 0; i < mapResults.length; i++) {
18 + if (mapResults[i]) {
19 + result = _concat.apply(result, mapResults[i]);
20 + }
21 + }
22 +
23 + return callback(err, result);
24 + });
25 +};
26 +
27 +var _noop = require('lodash/noop');
28 +
29 +var _noop2 = _interopRequireDefault(_noop);
30 +
31 +var _wrapAsync = require('./internal/wrapAsync');
32 +
33 +var _wrapAsync2 = _interopRequireDefault(_wrapAsync);
34 +
35 +var _slice = require('./internal/slice');
36 +
37 +var _slice2 = _interopRequireDefault(_slice);
38 +
39 +var _mapLimit = require('./mapLimit');
40 +
41 +var _mapLimit2 = _interopRequireDefault(_mapLimit);
42 +
43 +function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }
44 +
45 +var _concat = Array.prototype.concat;
46 +
47 +/**
48 + * The same as [`concat`]{@link module:Collections.concat} but runs a maximum of `limit` async operations at a time.
49 + *
50 + * @name concatLimit
51 + * @static
52 + * @memberOf module:Collections
53 + * @method
54 + * @see [async.concat]{@link module:Collections.concat}
55 + * @category Collection
56 + * @param {Array|Iterable|Object} coll - A collection to iterate over.
57 + * @param {number} limit - The maximum number of async operations at a time.
58 + * @param {AsyncFunction} iteratee - A function to apply to each item in `coll`,
59 + * which should use an array as its result. Invoked with (item, callback).
60 + * @param {Function} [callback] - A callback which is called after all the
61 + * `iteratee` functions have finished, or an error occurs. Results is an array
62 + * containing the concatenated results of the `iteratee` function. Invoked with
63 + * (err, results).
64 + */
65 +module.exports = exports['default'];
...\ No newline at end of file ...\ No newline at end of file
1 +'use strict';
2 +
3 +Object.defineProperty(exports, "__esModule", {
4 + value: true
5 +});
6 +
7 +var _doLimit = require('./internal/doLimit');
8 +
9 +var _doLimit2 = _interopRequireDefault(_doLimit);
10 +
11 +var _concatLimit = require('./concatLimit');
12 +
13 +var _concatLimit2 = _interopRequireDefault(_concatLimit);
14 +
15 +function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }
16 +
17 +/**
18 + * The same as [`concat`]{@link module:Collections.concat} but runs only a single async operation at a time.
19 + *
20 + * @name concatSeries
21 + * @static
22 + * @memberOf module:Collections
23 + * @method
24 + * @see [async.concat]{@link module:Collections.concat}
25 + * @category Collection
26 + * @param {Array|Iterable|Object} coll - A collection to iterate over.
27 + * @param {AsyncFunction} iteratee - A function to apply to each item in `coll`.
28 + * The iteratee should complete with an array an array of results.
29 + * Invoked with (item, callback).
30 + * @param {Function} [callback(err)] - A callback which is called after all the
31 + * `iteratee` functions have finished, or an error occurs. Results is an array
32 + * containing the concatenated results of the `iteratee` function. Invoked with
33 + * (err, results).
34 + */
35 +exports.default = (0, _doLimit2.default)(_concatLimit2.default, 1);
36 +module.exports = exports['default'];
...\ No newline at end of file ...\ No newline at end of file
1 +'use strict';
2 +
3 +Object.defineProperty(exports, "__esModule", {
4 + value: true
5 +});
6 +
7 +exports.default = function () /*...values*/{
8 + var values = (0, _slice2.default)(arguments);
9 + var args = [null].concat(values);
10 + return function () /*...ignoredArgs, callback*/{
11 + var callback = arguments[arguments.length - 1];
12 + return callback.apply(this, args);
13 + };
14 +};
15 +
16 +var _slice = require('./internal/slice');
17 +
18 +var _slice2 = _interopRequireDefault(_slice);
19 +
20 +function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }
21 +
22 +;
23 +
24 +/**
25 + * Returns a function that when called, calls-back with the values provided.
26 + * Useful as the first function in a [`waterfall`]{@link module:ControlFlow.waterfall}, or for plugging values in to
27 + * [`auto`]{@link module:ControlFlow.auto}.
28 + *
29 + * @name constant
30 + * @static
31 + * @memberOf module:Utils
32 + * @method
33 + * @category Util
34 + * @param {...*} arguments... - Any number of arguments to automatically invoke
35 + * callback with.
36 + * @returns {AsyncFunction} Returns a function that when invoked, automatically
37 + * invokes the callback with the previous given arguments.
38 + * @example
39 + *
40 + * async.waterfall([
41 + * async.constant(42),
42 + * function (value, next) {
43 + * // value === 42
44 + * },
45 + * //...
46 + * ], callback);
47 + *
48 + * async.waterfall([
49 + * async.constant(filename, "utf8"),
50 + * fs.readFile,
51 + * function (fileData, next) {
52 + * //...
53 + * }
54 + * //...
55 + * ], callback);
56 + *
57 + * async.auto({
58 + * hostname: async.constant("https://server.net/"),
59 + * port: findFreePort,
60 + * launchServer: ["hostname", "port", function (options, cb) {
61 + * startServer(options, cb);
62 + * }],
63 + * //...
64 + * }, callback);
65 + */
66 +module.exports = exports['default'];
...\ No newline at end of file ...\ No newline at end of file
1 +'use strict';
2 +
3 +Object.defineProperty(exports, "__esModule", {
4 + value: true
5 +});
6 +
7 +var _identity = require('lodash/identity');
8 +
9 +var _identity2 = _interopRequireDefault(_identity);
10 +
11 +var _createTester = require('./internal/createTester');
12 +
13 +var _createTester2 = _interopRequireDefault(_createTester);
14 +
15 +var _doParallel = require('./internal/doParallel');
16 +
17 +var _doParallel2 = _interopRequireDefault(_doParallel);
18 +
19 +var _findGetResult = require('./internal/findGetResult');
20 +
21 +var _findGetResult2 = _interopRequireDefault(_findGetResult);
22 +
23 +function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }
24 +
25 +/**
26 + * Returns the first value in `coll` that passes an async truth test. The
27 + * `iteratee` is applied in parallel, meaning the first iteratee to return
28 + * `true` will fire the detect `callback` with that result. That means the
29 + * result might not be the first item in the original `coll` (in terms of order)
30 + * that passes the test.
31 +
32 + * If order within the original `coll` is important, then look at
33 + * [`detectSeries`]{@link module:Collections.detectSeries}.
34 + *
35 + * @name detect
36 + * @static
37 + * @memberOf module:Collections
38 + * @method
39 + * @alias find
40 + * @category Collections
41 + * @param {Array|Iterable|Object} coll - A collection to iterate over.
42 + * @param {AsyncFunction} iteratee - A truth test to apply to each item in `coll`.
43 + * The iteratee must complete with a boolean value as its result.
44 + * Invoked with (item, callback).
45 + * @param {Function} [callback] - A callback which is called as soon as any
46 + * iteratee returns `true`, or after all the `iteratee` functions have finished.
47 + * Result will be the first item in the array that passes the truth test
48 + * (iteratee) or the value `undefined` if none passed. Invoked with
49 + * (err, result).
50 + * @example
51 + *
52 + * async.detect(['file1','file2','file3'], function(filePath, callback) {
53 + * fs.access(filePath, function(err) {
54 + * callback(null, !err)
55 + * });
56 + * }, function(err, result) {
57 + * // result now equals the first file in the list that exists
58 + * });
59 + */
60 +exports.default = (0, _doParallel2.default)((0, _createTester2.default)(_identity2.default, _findGetResult2.default));
61 +module.exports = exports['default'];
...\ No newline at end of file ...\ No newline at end of file
1 +'use strict';
2 +
3 +Object.defineProperty(exports, "__esModule", {
4 + value: true
5 +});
6 +
7 +var _identity = require('lodash/identity');
8 +
9 +var _identity2 = _interopRequireDefault(_identity);
10 +
11 +var _createTester = require('./internal/createTester');
12 +
13 +var _createTester2 = _interopRequireDefault(_createTester);
14 +
15 +var _doParallelLimit = require('./internal/doParallelLimit');
16 +
17 +var _doParallelLimit2 = _interopRequireDefault(_doParallelLimit);
18 +
19 +var _findGetResult = require('./internal/findGetResult');
20 +
21 +var _findGetResult2 = _interopRequireDefault(_findGetResult);
22 +
23 +function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }
24 +
25 +/**
26 + * The same as [`detect`]{@link module:Collections.detect} but runs a maximum of `limit` async operations at a
27 + * time.
28 + *
29 + * @name detectLimit
30 + * @static
31 + * @memberOf module:Collections
32 + * @method
33 + * @see [async.detect]{@link module:Collections.detect}
34 + * @alias findLimit
35 + * @category Collections
36 + * @param {Array|Iterable|Object} coll - A collection to iterate over.
37 + * @param {number} limit - The maximum number of async operations at a time.
38 + * @param {AsyncFunction} iteratee - A truth test to apply to each item in `coll`.
39 + * The iteratee must complete with a boolean value as its result.
40 + * Invoked with (item, callback).
41 + * @param {Function} [callback] - A callback which is called as soon as any
42 + * iteratee returns `true`, or after all the `iteratee` functions have finished.
43 + * Result will be the first item in the array that passes the truth test
44 + * (iteratee) or the value `undefined` if none passed. Invoked with
45 + * (err, result).
46 + */
47 +exports.default = (0, _doParallelLimit2.default)((0, _createTester2.default)(_identity2.default, _findGetResult2.default));
48 +module.exports = exports['default'];
...\ No newline at end of file ...\ No newline at end of file
1 +'use strict';
2 +
3 +Object.defineProperty(exports, "__esModule", {
4 + value: true
5 +});
6 +
7 +var _detectLimit = require('./detectLimit');
8 +
9 +var _detectLimit2 = _interopRequireDefault(_detectLimit);
10 +
11 +var _doLimit = require('./internal/doLimit');
12 +
13 +var _doLimit2 = _interopRequireDefault(_doLimit);
14 +
15 +function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }
16 +
17 +/**
18 + * The same as [`detect`]{@link module:Collections.detect} but runs only a single async operation at a time.
19 + *
20 + * @name detectSeries
21 + * @static
22 + * @memberOf module:Collections
23 + * @method
24 + * @see [async.detect]{@link module:Collections.detect}
25 + * @alias findSeries
26 + * @category Collections
27 + * @param {Array|Iterable|Object} coll - A collection to iterate over.
28 + * @param {AsyncFunction} iteratee - A truth test to apply to each item in `coll`.
29 + * The iteratee must complete with a boolean value as its result.
30 + * Invoked with (item, callback).
31 + * @param {Function} [callback] - A callback which is called as soon as any
32 + * iteratee returns `true`, or after all the `iteratee` functions have finished.
33 + * Result will be the first item in the array that passes the truth test
34 + * (iteratee) or the value `undefined` if none passed. Invoked with
35 + * (err, result).
36 + */
37 +exports.default = (0, _doLimit2.default)(_detectLimit2.default, 1);
38 +module.exports = exports['default'];
...\ No newline at end of file ...\ No newline at end of file
1 +'use strict';
2 +
3 +Object.defineProperty(exports, "__esModule", {
4 + value: true
5 +});
6 +
7 +var _consoleFunc = require('./internal/consoleFunc');
8 +
9 +var _consoleFunc2 = _interopRequireDefault(_consoleFunc);
10 +
11 +function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }
12 +
13 +/**
14 + * Logs the result of an [`async` function]{@link AsyncFunction} to the
15 + * `console` using `console.dir` to display the properties of the resulting object.
16 + * Only works in Node.js or in browsers that support `console.dir` and
17 + * `console.error` (such as FF and Chrome).
18 + * If multiple arguments are returned from the async function,
19 + * `console.dir` is called on each argument in order.
20 + *
21 + * @name dir
22 + * @static
23 + * @memberOf module:Utils
24 + * @method
25 + * @category Util
26 + * @param {AsyncFunction} function - The function you want to eventually apply
27 + * all arguments to.
28 + * @param {...*} arguments... - Any number of arguments to apply to the function.
29 + * @example
30 + *
31 + * // in a module
32 + * var hello = function(name, callback) {
33 + * setTimeout(function() {
34 + * callback(null, {hello: name});
35 + * }, 1000);
36 + * };
37 + *
38 + * // in the node repl
39 + * node> async.dir(hello, 'world');
40 + * {hello: 'world'}
41 + */
42 +exports.default = (0, _consoleFunc2.default)('dir');
43 +module.exports = exports['default'];
...\ No newline at end of file ...\ No newline at end of file
This diff could not be displayed because it is too large.
1 +!function(n,t){"object"==typeof exports&&"undefined"!=typeof module?t(exports):"function"==typeof define&&define.amd?define(["exports"],t):t(n.async=n.async||{})}(this,function(n){"use strict";function t(n,t){t|=0;for(var e=Math.max(n.length-t,0),r=Array(e),u=0;u<e;u++)r[u]=n[t+u];return r}function e(n){var t=typeof n;return null!=n&&("object"==t||"function"==t)}function r(n){setTimeout(n,0)}function u(n){return function(e){var r=t(arguments,1);n(function(){e.apply(null,r)})}}function i(n){return ct(function(t,r){var u;try{u=n.apply(this,t)}catch(n){return r(n)}e(u)&&"function"==typeof u.then?u.then(function(n){o(r,null,n)},function(n){o(r,n.message?n:new Error(n))}):r(null,u)})}function o(n,t,e){try{n(t,e)}catch(n){lt(c,n)}}function c(n){throw n}function f(n){return st&&"AsyncFunction"===n[Symbol.toStringTag]}function a(n){return f(n)?i(n):n}function l(n){return function(e){var r=t(arguments,1),u=ct(function(t,r){var u=this;return n(e,function(n,e){a(n).apply(u,t.concat(e))},r)});return r.length?u.apply(this,r):u}}function s(n){var t=mt.call(n,bt),e=n[bt];try{n[bt]=void 0;var r=!0}catch(n){}var u=gt.call(n);return r&&(t?n[bt]=e:delete n[bt]),u}function p(n){return St.call(n)}function h(n){return null==n?void 0===n?Lt:kt:Ot&&Ot in Object(n)?s(n):p(n)}function y(n){if(!e(n))return!1;var t=h(n);return t==xt||t==Et||t==wt||t==At}function v(n){return"number"==typeof n&&n>-1&&n%1==0&&n<=Tt}function d(n){return null!=n&&v(n.length)&&!y(n)}function m(){}function g(n){return function(){if(null!==n){var t=n;n=null,t.apply(this,arguments)}}}function b(n,t){for(var e=-1,r=Array(n);++e<n;)r[e]=t(e);return r}function j(n){return null!=n&&"object"==typeof n}function S(n){return j(n)&&h(n)==_t}function k(){return!1}function L(n,t){var e=typeof n;return t=null==t?Nt:t,!!t&&("number"==e||"symbol"!=e&&Qt.test(n))&&n>-1&&n%1==0&&n<t}function O(n){return j(n)&&v(n.length)&&!!me[h(n)]}function w(n){return function(t){return n(t)}}function x(n,t){var e=Pt(n),r=!e&&zt(n),u=!e&&!r&&Wt(n),i=!e&&!r&&!u&&Oe(n),o=e||r||u||i,c=o?b(n.length,String):[],f=c.length;for(var a in n)!t&&!xe.call(n,a)||o&&("length"==a||u&&("offset"==a||"parent"==a)||i&&("buffer"==a||"byteLength"==a||"byteOffset"==a)||L(a,f))||c.push(a);return c}function E(n){var t=n&&n.constructor,e="function"==typeof t&&t.prototype||Ee;return n===e}function A(n,t){return function(e){return n(t(e))}}function T(n){if(!E(n))return Ae(n);var t=[];for(var e in Object(n))Be.call(n,e)&&"constructor"!=e&&t.push(e);return t}function B(n){return d(n)?x(n):T(n)}function F(n){var t=-1,e=n.length;return function(){return++t<e?{value:n[t],key:t}:null}}function I(n){var t=-1;return function(){var e=n.next();return e.done?null:(t++,{value:e.value,key:t})}}function _(n){var t=B(n),e=-1,r=t.length;return function(){var u=t[++e];return e<r?{value:n[u],key:u}:null}}function M(n){if(d(n))return F(n);var t=It(n);return t?I(t):_(n)}function U(n){return function(){if(null===n)throw new Error("Callback was already called.");var t=n;n=null,t.apply(this,arguments)}}function q(n){return function(t,e,r){function u(n,t){if(f-=1,n)c=!0,r(n);else{if(t===Bt||c&&f<=0)return c=!0,r(null);a||i()}}function i(){for(a=!0;f<n&&!c;){var t=o();if(null===t)return c=!0,void(f<=0&&r(null));f+=1,e(t.value,t.key,U(u))}a=!1}if(r=g(r||m),n<=0||!t)return r(null);var o=M(t),c=!1,f=0,a=!1;i()}}function z(n,t,e,r){q(t)(n,a(e),r)}function P(n,t){return function(e,r,u){return n(e,t,r,u)}}function V(n,t,e){function r(n,t){n?e(n):++i!==o&&t!==Bt||e(null)}e=g(e||m);var u=0,i=0,o=n.length;for(0===o&&e(null);u<o;u++)t(n[u],u,U(r))}function D(n){return function(t,e,r){return n(Ie,t,a(e),r)}}function R(n,t,e,r){r=r||m,t=t||[];var u=[],i=0,o=a(e);n(t,function(n,t,e){var r=i++;o(n,function(n,t){u[r]=t,e(n)})},function(n){r(n,u)})}function C(n){return function(t,e,r,u){return n(q(e),t,a(r),u)}}function $(n,t){for(var e=-1,r=null==n?0:n.length;++e<r&&t(n[e],e,n)!==!1;);return n}function W(n){return function(t,e,r){for(var u=-1,i=Object(t),o=r(t),c=o.length;c--;){var f=o[n?c:++u];if(e(i[f],f,i)===!1)break}return t}}function N(n,t){return n&&Pe(n,t,B)}function Q(n,t,e,r){for(var u=n.length,i=e+(r?1:-1);r?i--:++i<u;)if(t(n[i],i,n))return i;return-1}function G(n){return n!==n}function H(n,t,e){for(var r=e-1,u=n.length;++r<u;)if(n[r]===t)return r;return-1}function J(n,t,e){return t===t?H(n,t,e):Q(n,G,e)}function K(n,t){for(var e=-1,r=null==n?0:n.length,u=Array(r);++e<r;)u[e]=t(n[e],e,n);return u}function X(n){return"symbol"==typeof n||j(n)&&h(n)==De}function Y(n){if("string"==typeof n)return n;if(Pt(n))return K(n,Y)+"";if(X(n))return $e?$e.call(n):"";var t=n+"";return"0"==t&&1/n==-Re?"-0":t}function Z(n,t,e){var r=-1,u=n.length;t<0&&(t=-t>u?0:u+t),e=e>u?u:e,e<0&&(e+=u),u=t>e?0:e-t>>>0,t>>>=0;for(var i=Array(u);++r<u;)i[r]=n[r+t];return i}function nn(n,t,e){var r=n.length;return e=void 0===e?r:e,!t&&e>=r?n:Z(n,t,e)}function tn(n,t){for(var e=n.length;e--&&J(t,n[e],0)>-1;);return e}function en(n,t){for(var e=-1,r=n.length;++e<r&&J(t,n[e],0)>-1;);return e}function rn(n){return n.split("")}function un(n){return Xe.test(n)}function on(n){return n.match(mr)||[]}function cn(n){return un(n)?on(n):rn(n)}function fn(n){return null==n?"":Y(n)}function an(n,t,e){if(n=fn(n),n&&(e||void 0===t))return n.replace(gr,"");if(!n||!(t=Y(t)))return n;var r=cn(n),u=cn(t),i=en(r,u),o=tn(r,u)+1;return nn(r,i,o).join("")}function ln(n){return n=n.toString().replace(kr,""),n=n.match(br)[2].replace(" ",""),n=n?n.split(jr):[],n=n.map(function(n){return an(n.replace(Sr,""))})}function sn(n,t){var e={};N(n,function(n,t){function r(t,e){var r=K(u,function(n){return t[n]});r.push(e),a(n).apply(null,r)}var u,i=f(n),o=!i&&1===n.length||i&&0===n.length;if(Pt(n))u=n.slice(0,-1),n=n[n.length-1],e[t]=u.concat(u.length>0?r:n);else if(o)e[t]=n;else{if(u=ln(n),0===n.length&&!i&&0===u.length)throw new Error("autoInject task functions require explicit parameters.");i||u.pop(),e[t]=u.concat(r)}}),Ve(e,t)}function pn(){this.head=this.tail=null,this.length=0}function hn(n,t){n.length=1,n.head=n.tail=t}function yn(n,t,e){function r(n,t,e){if(null!=e&&"function"!=typeof e)throw new Error("task callback must be a function");if(s.started=!0,Pt(n)||(n=[n]),0===n.length&&s.idle())return lt(function(){s.drain()});for(var r=0,u=n.length;r<u;r++){var i={data:n[r],callback:e||m};t?s._tasks.unshift(i):s._tasks.push(i)}f||(f=!0,lt(function(){f=!1,s.process()}))}function u(n){return function(t){o-=1;for(var e=0,r=n.length;e<r;e++){var u=n[e],i=J(c,u,0);0===i?c.shift():i>0&&c.splice(i,1),u.callback.apply(u,arguments),null!=t&&s.error(t,u.data)}o<=s.concurrency-s.buffer&&s.unsaturated(),s.idle()&&s.drain(),s.process()}}if(null==t)t=1;else if(0===t)throw new Error("Concurrency must not be zero");var i=a(n),o=0,c=[],f=!1,l=!1,s={_tasks:new pn,concurrency:t,payload:e,saturated:m,unsaturated:m,buffer:t/4,empty:m,drain:m,error:m,started:!1,paused:!1,push:function(n,t){r(n,!1,t)},kill:function(){s.drain=m,s._tasks.empty()},unshift:function(n,t){r(n,!0,t)},remove:function(n){s._tasks.remove(n)},process:function(){if(!l){for(l=!0;!s.paused&&o<s.concurrency&&s._tasks.length;){var n=[],t=[],e=s._tasks.length;s.payload&&(e=Math.min(e,s.payload));for(var r=0;r<e;r++){var f=s._tasks.shift();n.push(f),c.push(f),t.push(f.data)}o+=1,0===s._tasks.length&&s.empty(),o===s.concurrency&&s.saturated();var a=U(u(n));i(t,a)}l=!1}},length:function(){return s._tasks.length},running:function(){return o},workersList:function(){return c},idle:function(){return s._tasks.length+o===0},pause:function(){s.paused=!0},resume:function(){s.paused!==!1&&(s.paused=!1,lt(s.process))}};return s}function vn(n,t){return yn(n,1,t)}function dn(n,t,e,r){r=g(r||m);var u=a(e);Or(n,function(n,e,r){u(t,n,function(n,e){t=e,r(n)})},function(n){r(n,t)})}function mn(){var n=K(arguments,a);return function(){var e=t(arguments),r=this,u=e[e.length-1];"function"==typeof u?e.pop():u=m,dn(n,e,function(n,e,u){e.apply(r,n.concat(function(n){var e=t(arguments,1);u(n,e)}))},function(n,t){u.apply(r,[n].concat(t))})}}function gn(n){return n}function bn(n,t){return function(e,r,u,i){i=i||m;var o,c=!1;e(r,function(e,r,i){u(e,function(r,u){r?i(r):n(u)&&!o?(c=!0,o=t(!0,e),i(null,Bt)):i()})},function(n){n?i(n):i(null,c?o:t(!1))})}}function jn(n,t){return t}function Sn(n){return function(e){var r=t(arguments,1);r.push(function(e){var r=t(arguments,1);"object"==typeof console&&(e?console.error&&console.error(e):console[n]&&$(r,function(t){console[n](t)}))}),a(e).apply(null,r)}}function kn(n,e,r){function u(n){if(n)return r(n);var e=t(arguments,1);e.push(i),c.apply(this,e)}function i(n,t){return n?r(n):t?void o(u):r(null)}r=U(r||m);var o=a(n),c=a(e);i(null,!0)}function Ln(n,e,r){r=U(r||m);var u=a(n),i=function(n){if(n)return r(n);var o=t(arguments,1);return e.apply(this,o)?u(i):void r.apply(null,[null].concat(o))};u(i)}function On(n,t,e){Ln(n,function(){return!t.apply(this,arguments)},e)}function wn(n,t,e){function r(n){return n?e(n):void o(u)}function u(n,t){return n?e(n):t?void i(r):e(null)}e=U(e||m);var i=a(t),o=a(n);o(u)}function xn(n){return function(t,e,r){return n(t,r)}}function En(n,t,e){Ie(n,xn(a(t)),e)}function An(n,t,e,r){q(t)(n,xn(a(e)),r)}function Tn(n){return f(n)?n:ct(function(t,e){var r=!0;t.push(function(){var n=arguments;r?lt(function(){e.apply(null,n)}):e.apply(null,n)}),n.apply(this,t),r=!1})}function Bn(n){return!n}function Fn(n){return function(t){return null==t?void 0:t[n]}}function In(n,t,e,r){var u=new Array(t.length);n(t,function(n,t,r){e(n,function(n,e){u[t]=!!e,r(n)})},function(n){if(n)return r(n);for(var e=[],i=0;i<t.length;i++)u[i]&&e.push(t[i]);r(null,e)})}function _n(n,t,e,r){var u=[];n(t,function(n,t,r){e(n,function(e,i){e?r(e):(i&&u.push({index:t,value:n}),r())})},function(n){n?r(n):r(null,K(u.sort(function(n,t){return n.index-t.index}),Fn("value")))})}function Mn(n,t,e,r){var u=d(t)?In:_n;u(n,t,a(e),r||m)}function Un(n,t){function e(n){return n?r(n):void u(e)}var r=U(t||m),u=a(Tn(n));e()}function qn(n,t,e,r){r=g(r||m);var u={},i=a(e);z(n,t,function(n,t,e){i(n,t,function(n,r){return n?e(n):(u[t]=r,void e())})},function(n){r(n,u)})}function zn(n,t){return t in n}function Pn(n,e){var r=Object.create(null),u=Object.create(null);e=e||gn;var i=a(n),o=ct(function(n,o){var c=e.apply(null,n);zn(r,c)?lt(function(){o.apply(null,r[c])}):zn(u,c)?u[c].push(o):(u[c]=[o],i.apply(null,n.concat(function(){var n=t(arguments);r[c]=n;var e=u[c];delete u[c];for(var i=0,o=e.length;i<o;i++)e[i].apply(null,n)})))});return o.memo=r,o.unmemoized=n,o}function Vn(n,e,r){r=r||m;var u=d(e)?[]:{};n(e,function(n,e,r){a(n)(function(n,i){arguments.length>2&&(i=t(arguments,1)),u[e]=i,r(n)})},function(n){r(n,u)})}function Dn(n,t){Vn(Ie,n,t)}function Rn(n,t,e){Vn(q(t),n,e)}function Cn(n,t){if(t=g(t||m),!Pt(n))return t(new TypeError("First argument to race must be an array of functions"));if(!n.length)return t();for(var e=0,r=n.length;e<r;e++)a(n[e])(t)}function $n(n,e,r,u){var i=t(n).reverse();dn(i,e,r,u)}function Wn(n){var e=a(n);return ct(function(n,r){return n.push(function(n,e){if(n)r(null,{error:n});else{var u;u=arguments.length<=2?e:t(arguments,1),r(null,{value:u})}}),e.apply(this,n)})}function Nn(n){var t;return Pt(n)?t=K(n,Wn):(t={},N(n,function(n,e){t[e]=Wn.call(this,n)})),t}function Qn(n,t,e,r){Mn(n,t,function(n,t){e(n,function(n,e){t(n,!e)})},r)}function Gn(n){return function(){return n}}function Hn(n,t,e){function r(n,t){if("object"==typeof t)n.times=+t.times||i,n.intervalFunc="function"==typeof t.interval?t.interval:Gn(+t.interval||o),n.errorFilter=t.errorFilter;else{if("number"!=typeof t&&"string"!=typeof t)throw new Error("Invalid arguments for async.retry");n.times=+t||i}}function u(){f(function(n){n&&l++<c.times&&("function"!=typeof c.errorFilter||c.errorFilter(n))?setTimeout(u,c.intervalFunc(l)):e.apply(null,arguments)})}var i=5,o=0,c={times:i,intervalFunc:Gn(o)};if(arguments.length<3&&"function"==typeof n?(e=t||m,t=n):(r(c,n),e=e||m),"function"!=typeof t)throw new Error("Invalid arguments for async.retry");var f=a(t),l=1;u()}function Jn(n,t){Vn(Or,n,t)}function Kn(n,t,e){function r(n,t){var e=n.criteria,r=t.criteria;return e<r?-1:e>r?1:0}var u=a(t);_e(n,function(n,t){u(n,function(e,r){return e?t(e):void t(null,{value:n,criteria:r})})},function(n,t){return n?e(n):void e(null,K(t.sort(r),Fn("value")))})}function Xn(n,t,e){var r=a(n);return ct(function(u,i){function o(){var t=n.name||"anonymous",r=new Error('Callback function "'+t+'" timed out.');r.code="ETIMEDOUT",e&&(r.info=e),f=!0,i(r)}var c,f=!1;u.push(function(){f||(i.apply(null,arguments),clearTimeout(c))}),c=setTimeout(o,t),r.apply(null,u)})}function Yn(n,t,e,r){for(var u=-1,i=iu(uu((t-n)/(e||1)),0),o=Array(i);i--;)o[r?i:++u]=n,n+=e;return o}function Zn(n,t,e,r){var u=a(e);Ue(Yn(0,n,1),t,u,r)}function nt(n,t,e,r){arguments.length<=3&&(r=e,e=t,t=Pt(n)?[]:{}),r=g(r||m);var u=a(e);Ie(n,function(n,e,r){u(t,n,e,r)},function(n){r(n,t)})}function tt(n,e){var r,u=null;e=e||m,Ur(n,function(n,e){a(n)(function(n,i){r=arguments.length>2?t(arguments,1):i,u=n,e(!n)})},function(){e(u,r)})}function et(n){return function(){return(n.unmemoized||n).apply(null,arguments)}}function rt(n,e,r){r=U(r||m);var u=a(e);if(!n())return r(null);var i=function(e){if(e)return r(e);if(n())return u(i);var o=t(arguments,1);r.apply(null,[null].concat(o))};u(i)}function ut(n,t,e){rt(function(){return!n.apply(this,arguments)},t,e)}var it,ot=function(n){var e=t(arguments,1);return function(){var r=t(arguments);return n.apply(null,e.concat(r))}},ct=function(n){return function(){var e=t(arguments),r=e.pop();n.call(this,e,r)}},ft="function"==typeof setImmediate&&setImmediate,at="object"==typeof process&&"function"==typeof process.nextTick;it=ft?setImmediate:at?process.nextTick:r;var lt=u(it),st="function"==typeof Symbol,pt="object"==typeof global&&global&&global.Object===Object&&global,ht="object"==typeof self&&self&&self.Object===Object&&self,yt=pt||ht||Function("return this")(),vt=yt.Symbol,dt=Object.prototype,mt=dt.hasOwnProperty,gt=dt.toString,bt=vt?vt.toStringTag:void 0,jt=Object.prototype,St=jt.toString,kt="[object Null]",Lt="[object Undefined]",Ot=vt?vt.toStringTag:void 0,wt="[object AsyncFunction]",xt="[object Function]",Et="[object GeneratorFunction]",At="[object Proxy]",Tt=9007199254740991,Bt={},Ft="function"==typeof Symbol&&Symbol.iterator,It=function(n){return Ft&&n[Ft]&&n[Ft]()},_t="[object Arguments]",Mt=Object.prototype,Ut=Mt.hasOwnProperty,qt=Mt.propertyIsEnumerable,zt=S(function(){return arguments}())?S:function(n){return j(n)&&Ut.call(n,"callee")&&!qt.call(n,"callee")},Pt=Array.isArray,Vt="object"==typeof n&&n&&!n.nodeType&&n,Dt=Vt&&"object"==typeof module&&module&&!module.nodeType&&module,Rt=Dt&&Dt.exports===Vt,Ct=Rt?yt.Buffer:void 0,$t=Ct?Ct.isBuffer:void 0,Wt=$t||k,Nt=9007199254740991,Qt=/^(?:0|[1-9]\d*)$/,Gt="[object Arguments]",Ht="[object Array]",Jt="[object Boolean]",Kt="[object Date]",Xt="[object Error]",Yt="[object Function]",Zt="[object Map]",ne="[object Number]",te="[object Object]",ee="[object RegExp]",re="[object Set]",ue="[object String]",ie="[object WeakMap]",oe="[object ArrayBuffer]",ce="[object DataView]",fe="[object Float32Array]",ae="[object Float64Array]",le="[object Int8Array]",se="[object Int16Array]",pe="[object Int32Array]",he="[object Uint8Array]",ye="[object Uint8ClampedArray]",ve="[object Uint16Array]",de="[object Uint32Array]",me={};me[fe]=me[ae]=me[le]=me[se]=me[pe]=me[he]=me[ye]=me[ve]=me[de]=!0,me[Gt]=me[Ht]=me[oe]=me[Jt]=me[ce]=me[Kt]=me[Xt]=me[Yt]=me[Zt]=me[ne]=me[te]=me[ee]=me[re]=me[ue]=me[ie]=!1;var ge="object"==typeof n&&n&&!n.nodeType&&n,be=ge&&"object"==typeof module&&module&&!module.nodeType&&module,je=be&&be.exports===ge,Se=je&&pt.process,ke=function(){try{var n=be&&be.require&&be.require("util").types;return n?n:Se&&Se.binding&&Se.binding("util")}catch(n){}}(),Le=ke&&ke.isTypedArray,Oe=Le?w(Le):O,we=Object.prototype,xe=we.hasOwnProperty,Ee=Object.prototype,Ae=A(Object.keys,Object),Te=Object.prototype,Be=Te.hasOwnProperty,Fe=P(z,1/0),Ie=function(n,t,e){var r=d(n)?V:Fe;r(n,a(t),e)},_e=D(R),Me=l(_e),Ue=C(R),qe=P(Ue,1),ze=l(qe),Pe=W(),Ve=function(n,e,r){function u(n,t){j.push(function(){f(n,t)})}function i(){if(0===j.length&&0===v)return r(null,y);for(;j.length&&v<e;){var n=j.shift();n()}}function o(n,t){var e=b[n];e||(e=b[n]=[]),e.push(t)}function c(n){var t=b[n]||[];$(t,function(n){n()}),i()}function f(n,e){if(!d){var u=U(function(e,u){if(v--,arguments.length>2&&(u=t(arguments,1)),e){var i={};N(y,function(n,t){i[t]=n}),i[n]=u,d=!0,b=Object.create(null),r(e,i)}else y[n]=u,c(n)});v++;var i=a(e[e.length-1]);e.length>1?i(y,u):i(u)}}function l(){for(var n,t=0;S.length;)n=S.pop(),t++,$(s(n),function(n){0===--k[n]&&S.push(n)});if(t!==h)throw new Error("async.auto cannot execute tasks due to a recursive dependency")}function s(t){var e=[];return N(n,function(n,r){Pt(n)&&J(n,t,0)>=0&&e.push(r)}),e}"function"==typeof e&&(r=e,e=null),r=g(r||m);var p=B(n),h=p.length;if(!h)return r(null);e||(e=h);var y={},v=0,d=!1,b=Object.create(null),j=[],S=[],k={};N(n,function(t,e){if(!Pt(t))return u(e,[t]),void S.push(e);var r=t.slice(0,t.length-1),i=r.length;return 0===i?(u(e,t),void S.push(e)):(k[e]=i,void $(r,function(c){if(!n[c])throw new Error("async.auto task `"+e+"` has a non-existent dependency `"+c+"` in "+r.join(", "));o(c,function(){i--,0===i&&u(e,t)})}))}),l(),i()},De="[object Symbol]",Re=1/0,Ce=vt?vt.prototype:void 0,$e=Ce?Ce.toString:void 0,We="\\ud800-\\udfff",Ne="\\u0300-\\u036f",Qe="\\ufe20-\\ufe2f",Ge="\\u20d0-\\u20ff",He=Ne+Qe+Ge,Je="\\ufe0e\\ufe0f",Ke="\\u200d",Xe=RegExp("["+Ke+We+He+Je+"]"),Ye="\\ud800-\\udfff",Ze="\\u0300-\\u036f",nr="\\ufe20-\\ufe2f",tr="\\u20d0-\\u20ff",er=Ze+nr+tr,rr="\\ufe0e\\ufe0f",ur="["+Ye+"]",ir="["+er+"]",or="\\ud83c[\\udffb-\\udfff]",cr="(?:"+ir+"|"+or+")",fr="[^"+Ye+"]",ar="(?:\\ud83c[\\udde6-\\uddff]){2}",lr="[\\ud800-\\udbff][\\udc00-\\udfff]",sr="\\u200d",pr=cr+"?",hr="["+rr+"]?",yr="(?:"+sr+"(?:"+[fr,ar,lr].join("|")+")"+hr+pr+")*",vr=hr+pr+yr,dr="(?:"+[fr+ir+"?",ir,ar,lr,ur].join("|")+")",mr=RegExp(or+"(?="+or+")|"+dr+vr,"g"),gr=/^\s+|\s+$/g,br=/^(?:async\s+)?(function)?\s*[^\(]*\(\s*([^\)]*)\)/m,jr=/,/,Sr=/(=.+)?(\s*)$/,kr=/((\/\/.*$)|(\/\*[\s\S]*?\*\/))/gm;pn.prototype.removeLink=function(n){return n.prev?n.prev.next=n.next:this.head=n.next,n.next?n.next.prev=n.prev:this.tail=n.prev,n.prev=n.next=null,this.length-=1,n},pn.prototype.empty=function(){for(;this.head;)this.shift();return this},pn.prototype.insertAfter=function(n,t){t.prev=n,t.next=n.next,n.next?n.next.prev=t:this.tail=t,n.next=t,this.length+=1},pn.prototype.insertBefore=function(n,t){t.prev=n.prev,t.next=n,n.prev?n.prev.next=t:this.head=t,n.prev=t,this.length+=1},pn.prototype.unshift=function(n){this.head?this.insertBefore(this.head,n):hn(this,n)},pn.prototype.push=function(n){this.tail?this.insertAfter(this.tail,n):hn(this,n)},pn.prototype.shift=function(){return this.head&&this.removeLink(this.head)},pn.prototype.pop=function(){return this.tail&&this.removeLink(this.tail)},pn.prototype.toArray=function(){for(var n=Array(this.length),t=this.head,e=0;e<this.length;e++)n[e]=t.data,t=t.next;return n},pn.prototype.remove=function(n){for(var t=this.head;t;){var e=t.next;n(t)&&this.removeLink(t),t=e}return this};var Lr,Or=P(z,1),wr=function(){return mn.apply(null,t(arguments).reverse())},xr=Array.prototype.concat,Er=function(n,e,r,u){u=u||m;var i=a(r);Ue(n,e,function(n,e){i(n,function(n){return n?e(n):e(null,t(arguments,1))})},function(n,t){for(var e=[],r=0;r<t.length;r++)t[r]&&(e=xr.apply(e,t[r]));return u(n,e)})},Ar=P(Er,1/0),Tr=P(Er,1),Br=function(){var n=t(arguments),e=[null].concat(n);return function(){var n=arguments[arguments.length-1];return n.apply(this,e)}},Fr=D(bn(gn,jn)),Ir=C(bn(gn,jn)),_r=P(Ir,1),Mr=Sn("dir"),Ur=P(An,1),qr=D(bn(Bn,Bn)),zr=C(bn(Bn,Bn)),Pr=P(zr,1),Vr=D(Mn),Dr=C(Mn),Rr=P(Dr,1),Cr=function(n,t,e,r){r=r||m;var u=a(e);Ue(n,t,function(n,t){u(n,function(e,r){return e?t(e):t(null,{key:r,val:n})})},function(n,t){for(var e={},u=Object.prototype.hasOwnProperty,i=0;i<t.length;i++)if(t[i]){var o=t[i].key,c=t[i].val;u.call(e,o)?e[o].push(c):e[o]=[c]}return r(n,e)})},$r=P(Cr,1/0),Wr=P(Cr,1),Nr=Sn("log"),Qr=P(qn,1/0),Gr=P(qn,1);Lr=at?process.nextTick:ft?setImmediate:r;var Hr=u(Lr),Jr=function(n,t){var e=a(n);return yn(function(n,t){e(n[0],t)},t,1)},Kr=function(n,t){var e=Jr(n,t);return e.push=function(n,t,r){if(null==r&&(r=m),"function"!=typeof r)throw new Error("task callback must be a function");if(e.started=!0,Pt(n)||(n=[n]),0===n.length)return lt(function(){e.drain()});t=t||0;for(var u=e._tasks.head;u&&t>=u.priority;)u=u.next;for(var i=0,o=n.length;i<o;i++){var c={data:n[i],priority:t,callback:r};u?e._tasks.insertBefore(u,c):e._tasks.push(c)}lt(e.process)},delete e.unshift,e},Xr=D(Qn),Yr=C(Qn),Zr=P(Yr,1),nu=function(n,t){t||(t=n,n=null);var e=a(t);return ct(function(t,r){function u(n){e.apply(null,t.concat(n))}n?Hn(n,u,r):Hn(u,r)})},tu=D(bn(Boolean,gn)),eu=C(bn(Boolean,gn)),ru=P(eu,1),uu=Math.ceil,iu=Math.max,ou=P(Zn,1/0),cu=P(Zn,1),fu=function(n,e){function r(t){var e=a(n[i++]);t.push(U(u)),e.apply(null,t)}function u(u){return u||i===n.length?e.apply(null,arguments):void r(t(arguments,1))}if(e=g(e||m),!Pt(n))return e(new Error("First argument to waterfall must be an array of functions"));if(!n.length)return e();var i=0;r([])},au={apply:ot,applyEach:Me,applyEachSeries:ze,asyncify:i,auto:Ve,autoInject:sn,cargo:vn,compose:wr,concat:Ar,concatLimit:Er,concatSeries:Tr,constant:Br,detect:Fr,detectLimit:Ir,detectSeries:_r,dir:Mr,doDuring:kn,doUntil:On,doWhilst:Ln,during:wn,each:En,eachLimit:An,eachOf:Ie,eachOfLimit:z,eachOfSeries:Or,eachSeries:Ur,ensureAsync:Tn,every:qr,everyLimit:zr,everySeries:Pr,filter:Vr,filterLimit:Dr,filterSeries:Rr,forever:Un,groupBy:$r,groupByLimit:Cr,groupBySeries:Wr,log:Nr,map:_e,mapLimit:Ue,mapSeries:qe,mapValues:Qr,mapValuesLimit:qn,mapValuesSeries:Gr,memoize:Pn,nextTick:Hr,parallel:Dn,parallelLimit:Rn,priorityQueue:Kr,queue:Jr,race:Cn,reduce:dn,reduceRight:$n,reflect:Wn,reflectAll:Nn,reject:Xr,rejectLimit:Yr,rejectSeries:Zr,retry:Hn,retryable:nu,seq:mn,series:Jn,setImmediate:lt,some:tu,someLimit:eu,someSeries:ru,sortBy:Kn,timeout:Xn,times:ou,timesLimit:Zn,timesSeries:cu,transform:nt,tryEach:tt,unmemoize:et,until:ut,waterfall:fu,whilst:rt,all:qr,allLimit:zr,allSeries:Pr,any:tu,anyLimit:eu,anySeries:ru,find:Fr,findLimit:Ir,findSeries:_r,forEach:En,forEachSeries:Ur,forEachLimit:An,forEachOf:Ie,forEachOfSeries:Or,forEachOfLimit:z,inject:dn,foldl:dn,foldr:$n,select:Vr,selectLimit:Dr,selectSeries:Rr,wrapSync:i};n.default=au,n.apply=ot,n.applyEach=Me,n.applyEachSeries=ze,n.asyncify=i,n.auto=Ve,n.autoInject=sn,n.cargo=vn,n.compose=wr,n.concat=Ar,n.concatLimit=Er,n.concatSeries=Tr,n.constant=Br,n.detect=Fr,n.detectLimit=Ir,n.detectSeries=_r,n.dir=Mr,n.doDuring=kn,n.doUntil=On,n.doWhilst=Ln,n.during=wn,n.each=En,n.eachLimit=An,n.eachOf=Ie,n.eachOfLimit=z,n.eachOfSeries=Or,n.eachSeries=Ur,n.ensureAsync=Tn,n.every=qr,n.everyLimit=zr,n.everySeries=Pr,n.filter=Vr,n.filterLimit=Dr,n.filterSeries=Rr,n.forever=Un,n.groupBy=$r,n.groupByLimit=Cr,n.groupBySeries=Wr,n.log=Nr,n.map=_e,n.mapLimit=Ue,n.mapSeries=qe,n.mapValues=Qr,n.mapValuesLimit=qn,n.mapValuesSeries=Gr,n.memoize=Pn,n.nextTick=Hr,n.parallel=Dn,n.parallelLimit=Rn,n.priorityQueue=Kr,n.queue=Jr,n.race=Cn,n.reduce=dn,n.reduceRight=$n,n.reflect=Wn,n.reflectAll=Nn,n.reject=Xr,n.rejectLimit=Yr,n.rejectSeries=Zr,n.retry=Hn,n.retryable=nu,n.seq=mn,n.series=Jn,n.setImmediate=lt,n.some=tu,n.someLimit=eu,n.someSeries=ru,n.sortBy=Kn,n.timeout=Xn,n.times=ou,n.timesLimit=Zn,n.timesSeries=cu,n.transform=nt,n.tryEach=tt,n.unmemoize=et,n.until=ut,n.waterfall=fu,n.whilst=rt,n.all=qr,n.allLimit=zr,n.allSeries=Pr,n.any=tu,n.anyLimit=eu,n.anySeries=ru,n.find=Fr,n.findLimit=Ir,n.findSeries=_r,n.forEach=En,n.forEachSeries=Ur,n.forEachLimit=An,n.forEachOf=Ie,n.forEachOfSeries=Or,n.forEachOfLimit=z,n.inject=dn,n.foldl=dn,n.foldr=$n,n.select=Vr,n.selectLimit=Dr,n.selectSeries=Rr,n.wrapSync=i,Object.defineProperty(n,"__esModule",{value:!0})});
2 +//# sourceMappingURL=async.min.map
...\ No newline at end of file ...\ No newline at end of file
1 +{"version":3,"sources":["build/dist/async.js"],"names":["global","factory","exports","module","define","amd","async","this","slice","arrayLike","start","newLen","Math","max","length","newArr","Array","idx","isObject","value","type","fallback","fn","setTimeout","wrap","defer","args","arguments","apply","asyncify","func","initialParams","callback","result","e","then","invokeCallback","err","message","Error","error","setImmediate$1","rethrow","isAsync","supportsSymbol","Symbol","toStringTag","wrapAsync","asyncFn","applyEach$1","eachfn","fns","go","that","cb","concat","getRawTag","isOwn","hasOwnProperty","call","symToStringTag$1","tag","undefined","unmasked","nativeObjectToString","objectToString","nativeObjectToString$1","baseGetTag","undefinedTag","nullTag","symToStringTag","Object","isFunction","funcTag","genTag","asyncTag","proxyTag","isLength","MAX_SAFE_INTEGER","isArrayLike","noop","once","callFn","baseTimes","n","iteratee","index","isObjectLike","baseIsArguments","argsTag","stubFalse","isIndex","MAX_SAFE_INTEGER$1","reIsUint","test","baseIsTypedArray","typedArrayTags","baseUnary","arrayLikeKeys","inherited","isArr","isArray","isArg","isArguments","isBuff","isBuffer","isType","isTypedArray","skipIndexes","String","key","hasOwnProperty$1","push","isPrototype","Ctor","constructor","proto","prototype","objectProto$5","overArg","transform","arg","baseKeys","object","nativeKeys","hasOwnProperty$3","keys","createArrayIterator","coll","i","len","createES2015Iterator","iterator","item","next","done","createObjectIterator","obj","okeys","getIterator","onlyOnce","_eachOfLimit","limit","iterateeCallback","running","breakLoop","looping","replenish","elem","nextElem","eachOfLimit","doLimit","iterable","eachOfArrayLike","iteratorCallback","completed","doParallel","eachOf","_asyncMap","arr","results","counter","_iteratee","_","v","doParallelLimit","arrayEach","array","createBaseFor","fromRight","keysFunc","props","baseForOwn","baseFor","baseFindIndex","predicate","fromIndex","baseIsNaN","strictIndexOf","baseIndexOf","arrayMap","isSymbol","symbolTag","baseToString","symbolToString","INFINITY","baseSlice","end","castSlice","charsEndIndex","strSymbols","chrSymbols","charsStartIndex","asciiToArray","string","split","hasUnicode","reHasUnicode","unicodeToArray","match","reUnicode","stringToArray","toString","trim","chars","guard","replace","reTrim","join","parseParams","STRIP_COMMENTS","FN_ARGS","FN_ARG_SPLIT","map","FN_ARG","autoInject","tasks","newTasks","taskFn","newTask","taskCb","newArgs","params","name","fnIsAsync","hasNoDeps","pop","auto","DLL","head","tail","setInitial","dll","node","queue","worker","concurrency","payload","_insert","data","insertAtFront","q","started","idle","drain","l","_tasks","unshift","processingScheduled","process","_next","numRunning","task","workersList","shift","splice","buffer","unsaturated","_worker","isProcessing","saturated","empty","paused","kill","remove","testFn","min","pause","resume","cargo","reduce","memo","eachOfSeries","x","seq","_functions","newargs","nextargs","identity","_createTester","check","getResult","testResult","testPassed","_findGetResult","consoleFunc","console","doDuring","_test","truth","_fn","doWhilst","doUntil","during","_withoutIndex","eachLimit","eachLimit$1","ensureAsync","sync","innerArgs","notId","baseProperty","filterArray","truthValues","filterGeneric","sort","a","b","_filter","filter","forever","errback","mapValuesLimit","newObj","val","has","memoize","hasher","create","queues","memoized","unmemoized","_parallel","parallelLimit","parallelLimit$1","race","TypeError","reduceRight","reversed","reverse","reflect","reflectCallback","cbArg","reflectAll","reject$1","constant$1","retry","opts","parseTimes","acc","t","times","DEFAULT_TIMES","intervalFunc","interval","DEFAULT_INTERVAL","errorFilter","retryAttempt","_task","attempt","options","series","sortBy","comparator","left","right","criteria","timeout","milliseconds","info","timeoutCallback","code","timedOut","timer","clearTimeout","baseRange","step","nativeMax","nativeCeil","timeLimit","count","mapLimit","accumulator","k","tryEach","eachSeries","res","unmemoize","whilst","until","_defer","callArgs","hasSetImmediate","setImmediate","hasNextTick","nextTick","freeGlobal","freeSelf","self","root","Function","Symbol$1","objectProto","objectProto$1","iteratorSymbol","objectProto$3","hasOwnProperty$2","propertyIsEnumerable","freeExports","nodeType","freeModule","moduleExports","Buffer","nativeIsBuffer","argsTag$1","arrayTag","boolTag","dateTag","errorTag","funcTag$1","mapTag","numberTag","objectTag","regexpTag","setTag","stringTag","weakMapTag","arrayBufferTag","dataViewTag","float32Tag","float64Tag","int8Tag","int16Tag","int32Tag","uint8Tag","uint8ClampedTag","uint16Tag","uint32Tag","freeExports$1","freeModule$1","moduleExports$1","freeProcess","nodeUtil","types","require","binding","nodeIsTypedArray","objectProto$2","objectProto$4","eachOfGeneric","Infinity","eachOfImplementation","applyEach","mapSeries","applyEachSeries","enqueueTask","readyTasks","runTask","processQueue","runningTasks","run","addListener","taskName","taskListeners","listeners","taskComplete","hasError","taskCallback","safeResults","rkey","checkForDeadlocks","currentTask","readyToCheck","getDependents","dependent","uncheckedDependencies","numTasks","keys$$1","dependencies","remainingDependencies","dependencyName","symbolProto","rsAstralRange","rsComboMarksRange","reComboHalfMarksRange","rsComboSymbolsRange","rsComboRange","rsVarRange","rsZWJ","RegExp","rsAstralRange$1","rsComboMarksRange$1","reComboHalfMarksRange$1","rsComboSymbolsRange$1","rsComboRange$1","rsVarRange$1","rsAstral","rsCombo","rsFitz","rsModifier","rsNonAstral","rsRegional","rsSurrPair","rsZWJ$1","reOptMod","rsOptVar","rsOptJoin","rsSeq","rsSymbol","removeLink","prev","insertAfter","newNode","insertBefore","toArray","curr","_defer$1","compose","_concat","concatLimit","mapResults","concatSeries","constant","values","detect","detectLimit","detectSeries","dir","every","everyLimit","everySeries","filterLimit","filterSeries","groupByLimit","groupBy","groupBySeries","log","mapValues","mapValuesSeries","queue$1","items","priorityQueue","priority","nextNode","reject","rejectLimit","rejectSeries","retryable","some","Boolean","someLimit","someSeries","ceil","timesSeries","waterfall","nextTask","taskIndex","each","parallel","timesLimit","all","allLimit","allSeries","any","anyLimit","anySeries","find","findLimit","findSeries","forEach","forEachSeries","forEachLimit","forEachOf","forEachOfSeries","forEachOfLimit","inject","foldl","foldr","select","selectLimit","selectSeries","wrapSync","defineProperty"],"mappings":"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","file":"build/dist/async.min.js"}
...\ No newline at end of file ...\ No newline at end of file
1 +'use strict';
2 +
3 +Object.defineProperty(exports, "__esModule", {
4 + value: true
5 +});
6 +exports.default = doDuring;
7 +
8 +var _noop = require('lodash/noop');
9 +
10 +var _noop2 = _interopRequireDefault(_noop);
11 +
12 +var _slice = require('./internal/slice');
13 +
14 +var _slice2 = _interopRequireDefault(_slice);
15 +
16 +var _onlyOnce = require('./internal/onlyOnce');
17 +
18 +var _onlyOnce2 = _interopRequireDefault(_onlyOnce);
19 +
20 +var _wrapAsync = require('./internal/wrapAsync');
21 +
22 +var _wrapAsync2 = _interopRequireDefault(_wrapAsync);
23 +
24 +function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }
25 +
26 +/**
27 + * The post-check version of [`during`]{@link module:ControlFlow.during}. To reflect the difference in
28 + * the order of operations, the arguments `test` and `fn` are switched.
29 + *
30 + * Also a version of [`doWhilst`]{@link module:ControlFlow.doWhilst} with asynchronous `test` function.
31 + * @name doDuring
32 + * @static
33 + * @memberOf module:ControlFlow
34 + * @method
35 + * @see [async.during]{@link module:ControlFlow.during}
36 + * @category Control Flow
37 + * @param {AsyncFunction} fn - An async function which is called each time
38 + * `test` passes. Invoked with (callback).
39 + * @param {AsyncFunction} test - asynchronous truth test to perform before each
40 + * execution of `fn`. Invoked with (...args, callback), where `...args` are the
41 + * non-error args from the previous callback of `fn`.
42 + * @param {Function} [callback] - A callback which is called after the test
43 + * function has failed and repeated execution of `fn` has stopped. `callback`
44 + * will be passed an error if one occurred, otherwise `null`.
45 + */
46 +function doDuring(fn, test, callback) {
47 + callback = (0, _onlyOnce2.default)(callback || _noop2.default);
48 + var _fn = (0, _wrapAsync2.default)(fn);
49 + var _test = (0, _wrapAsync2.default)(test);
50 +
51 + function next(err /*, ...args*/) {
52 + if (err) return callback(err);
53 + var args = (0, _slice2.default)(arguments, 1);
54 + args.push(check);
55 + _test.apply(this, args);
56 + };
57 +
58 + function check(err, truth) {
59 + if (err) return callback(err);
60 + if (!truth) return callback(null);
61 + _fn(next);
62 + }
63 +
64 + check(null, true);
65 +}
66 +module.exports = exports['default'];
...\ No newline at end of file ...\ No newline at end of file
1 +'use strict';
2 +
3 +Object.defineProperty(exports, "__esModule", {
4 + value: true
5 +});
6 +exports.default = doUntil;
7 +
8 +var _doWhilst = require('./doWhilst');
9 +
10 +var _doWhilst2 = _interopRequireDefault(_doWhilst);
11 +
12 +function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }
13 +
14 +/**
15 + * Like ['doWhilst']{@link module:ControlFlow.doWhilst}, except the `test` is inverted. Note the
16 + * argument ordering differs from `until`.
17 + *
18 + * @name doUntil
19 + * @static
20 + * @memberOf module:ControlFlow
21 + * @method
22 + * @see [async.doWhilst]{@link module:ControlFlow.doWhilst}
23 + * @category Control Flow
24 + * @param {AsyncFunction} iteratee - An async function which is called each time
25 + * `test` fails. Invoked with (callback).
26 + * @param {Function} test - synchronous truth test to perform after each
27 + * execution of `iteratee`. Invoked with any non-error callback results of
28 + * `iteratee`.
29 + * @param {Function} [callback] - A callback which is called after the test
30 + * function has passed and repeated execution of `iteratee` has stopped. `callback`
31 + * will be passed an error and any arguments passed to the final `iteratee`'s
32 + * callback. Invoked with (err, [results]);
33 + */
34 +function doUntil(iteratee, test, callback) {
35 + (0, _doWhilst2.default)(iteratee, function () {
36 + return !test.apply(this, arguments);
37 + }, callback);
38 +}
39 +module.exports = exports['default'];
...\ No newline at end of file ...\ No newline at end of file
1 +'use strict';
2 +
3 +Object.defineProperty(exports, "__esModule", {
4 + value: true
5 +});
6 +exports.default = doWhilst;
7 +
8 +var _noop = require('lodash/noop');
9 +
10 +var _noop2 = _interopRequireDefault(_noop);
11 +
12 +var _slice = require('./internal/slice');
13 +
14 +var _slice2 = _interopRequireDefault(_slice);
15 +
16 +var _onlyOnce = require('./internal/onlyOnce');
17 +
18 +var _onlyOnce2 = _interopRequireDefault(_onlyOnce);
19 +
20 +var _wrapAsync = require('./internal/wrapAsync');
21 +
22 +var _wrapAsync2 = _interopRequireDefault(_wrapAsync);
23 +
24 +function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }
25 +
26 +/**
27 + * The post-check version of [`whilst`]{@link module:ControlFlow.whilst}. To reflect the difference in
28 + * the order of operations, the arguments `test` and `iteratee` are switched.
29 + *
30 + * `doWhilst` is to `whilst` as `do while` is to `while` in plain JavaScript.
31 + *
32 + * @name doWhilst
33 + * @static
34 + * @memberOf module:ControlFlow
35 + * @method
36 + * @see [async.whilst]{@link module:ControlFlow.whilst}
37 + * @category Control Flow
38 + * @param {AsyncFunction} iteratee - A function which is called each time `test`
39 + * passes. Invoked with (callback).
40 + * @param {Function} test - synchronous truth test to perform after each
41 + * execution of `iteratee`. Invoked with any non-error callback results of
42 + * `iteratee`.
43 + * @param {Function} [callback] - A callback which is called after the test
44 + * function has failed and repeated execution of `iteratee` has stopped.
45 + * `callback` will be passed an error and any arguments passed to the final
46 + * `iteratee`'s callback. Invoked with (err, [results]);
47 + */
48 +function doWhilst(iteratee, test, callback) {
49 + callback = (0, _onlyOnce2.default)(callback || _noop2.default);
50 + var _iteratee = (0, _wrapAsync2.default)(iteratee);
51 + var next = function (err /*, ...args*/) {
52 + if (err) return callback(err);
53 + var args = (0, _slice2.default)(arguments, 1);
54 + if (test.apply(this, args)) return _iteratee(next);
55 + callback.apply(null, [null].concat(args));
56 + };
57 + _iteratee(next);
58 +}
59 +module.exports = exports['default'];
...\ No newline at end of file ...\ No newline at end of file
1 +'use strict';
2 +
3 +Object.defineProperty(exports, "__esModule", {
4 + value: true
5 +});
6 +exports.default = during;
7 +
8 +var _noop = require('lodash/noop');
9 +
10 +var _noop2 = _interopRequireDefault(_noop);
11 +
12 +var _onlyOnce = require('./internal/onlyOnce');
13 +
14 +var _onlyOnce2 = _interopRequireDefault(_onlyOnce);
15 +
16 +var _wrapAsync = require('./internal/wrapAsync');
17 +
18 +var _wrapAsync2 = _interopRequireDefault(_wrapAsync);
19 +
20 +function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }
21 +
22 +/**
23 + * Like [`whilst`]{@link module:ControlFlow.whilst}, except the `test` is an asynchronous function that
24 + * is passed a callback in the form of `function (err, truth)`. If error is
25 + * passed to `test` or `fn`, the main callback is immediately called with the
26 + * value of the error.
27 + *
28 + * @name during
29 + * @static
30 + * @memberOf module:ControlFlow
31 + * @method
32 + * @see [async.whilst]{@link module:ControlFlow.whilst}
33 + * @category Control Flow
34 + * @param {AsyncFunction} test - asynchronous truth test to perform before each
35 + * execution of `fn`. Invoked with (callback).
36 + * @param {AsyncFunction} fn - An async function which is called each time
37 + * `test` passes. Invoked with (callback).
38 + * @param {Function} [callback] - A callback which is called after the test
39 + * function has failed and repeated execution of `fn` has stopped. `callback`
40 + * will be passed an error, if one occurred, otherwise `null`.
41 + * @example
42 + *
43 + * var count = 0;
44 + *
45 + * async.during(
46 + * function (callback) {
47 + * return callback(null, count < 5);
48 + * },
49 + * function (callback) {
50 + * count++;
51 + * setTimeout(callback, 1000);
52 + * },
53 + * function (err) {
54 + * // 5 seconds have passed
55 + * }
56 + * );
57 + */
58 +function during(test, fn, callback) {
59 + callback = (0, _onlyOnce2.default)(callback || _noop2.default);
60 + var _fn = (0, _wrapAsync2.default)(fn);
61 + var _test = (0, _wrapAsync2.default)(test);
62 +
63 + function next(err) {
64 + if (err) return callback(err);
65 + _test(check);
66 + }
67 +
68 + function check(err, truth) {
69 + if (err) return callback(err);
70 + if (!truth) return callback(null);
71 + _fn(next);
72 + }
73 +
74 + _test(check);
75 +}
76 +module.exports = exports['default'];
...\ No newline at end of file ...\ No newline at end of file
1 +'use strict';
2 +
3 +Object.defineProperty(exports, "__esModule", {
4 + value: true
5 +});
6 +exports.default = eachLimit;
7 +
8 +var _eachOf = require('./eachOf');
9 +
10 +var _eachOf2 = _interopRequireDefault(_eachOf);
11 +
12 +var _withoutIndex = require('./internal/withoutIndex');
13 +
14 +var _withoutIndex2 = _interopRequireDefault(_withoutIndex);
15 +
16 +var _wrapAsync = require('./internal/wrapAsync');
17 +
18 +var _wrapAsync2 = _interopRequireDefault(_wrapAsync);
19 +
20 +function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }
21 +
22 +/**
23 + * Applies the function `iteratee` to each item in `coll`, in parallel.
24 + * The `iteratee` is called with an item from the list, and a callback for when
25 + * it has finished. If the `iteratee` passes an error to its `callback`, the
26 + * main `callback` (for the `each` function) is immediately called with the
27 + * error.
28 + *
29 + * Note, that since this function applies `iteratee` to each item in parallel,
30 + * there is no guarantee that the iteratee functions will complete in order.
31 + *
32 + * @name each
33 + * @static
34 + * @memberOf module:Collections
35 + * @method
36 + * @alias forEach
37 + * @category Collection
38 + * @param {Array|Iterable|Object} coll - A collection to iterate over.
39 + * @param {AsyncFunction} iteratee - An async function to apply to
40 + * each item in `coll`. Invoked with (item, callback).
41 + * The array index is not passed to the iteratee.
42 + * If you need the index, use `eachOf`.
43 + * @param {Function} [callback] - A callback which is called when all
44 + * `iteratee` functions have finished, or an error occurs. Invoked with (err).
45 + * @example
46 + *
47 + * // assuming openFiles is an array of file names and saveFile is a function
48 + * // to save the modified contents of that file:
49 + *
50 + * async.each(openFiles, saveFile, function(err){
51 + * // if any of the saves produced an error, err would equal that error
52 + * });
53 + *
54 + * // assuming openFiles is an array of file names
55 + * async.each(openFiles, function(file, callback) {
56 + *
57 + * // Perform operation on file here.
58 + * console.log('Processing file ' + file);
59 + *
60 + * if( file.length > 32 ) {
61 + * console.log('This file name is too long');
62 + * callback('File name too long');
63 + * } else {
64 + * // Do work to process file here
65 + * console.log('File processed');
66 + * callback();
67 + * }
68 + * }, function(err) {
69 + * // if any of the file processing produced an error, err would equal that error
70 + * if( err ) {
71 + * // One of the iterations produced an error.
72 + * // All processing will now stop.
73 + * console.log('A file failed to process');
74 + * } else {
75 + * console.log('All files have been processed successfully');
76 + * }
77 + * });
78 + */
79 +function eachLimit(coll, iteratee, callback) {
80 + (0, _eachOf2.default)(coll, (0, _withoutIndex2.default)((0, _wrapAsync2.default)(iteratee)), callback);
81 +}
82 +module.exports = exports['default'];
...\ No newline at end of file ...\ No newline at end of file
1 +'use strict';
2 +
3 +Object.defineProperty(exports, "__esModule", {
4 + value: true
5 +});
6 +exports.default = eachLimit;
7 +
8 +var _eachOfLimit = require('./internal/eachOfLimit');
9 +
10 +var _eachOfLimit2 = _interopRequireDefault(_eachOfLimit);
11 +
12 +var _withoutIndex = require('./internal/withoutIndex');
13 +
14 +var _withoutIndex2 = _interopRequireDefault(_withoutIndex);
15 +
16 +var _wrapAsync = require('./internal/wrapAsync');
17 +
18 +var _wrapAsync2 = _interopRequireDefault(_wrapAsync);
19 +
20 +function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }
21 +
22 +/**
23 + * The same as [`each`]{@link module:Collections.each} but runs a maximum of `limit` async operations at a time.
24 + *
25 + * @name eachLimit
26 + * @static
27 + * @memberOf module:Collections
28 + * @method
29 + * @see [async.each]{@link module:Collections.each}
30 + * @alias forEachLimit
31 + * @category Collection
32 + * @param {Array|Iterable|Object} coll - A collection to iterate over.
33 + * @param {number} limit - The maximum number of async operations at a time.
34 + * @param {AsyncFunction} iteratee - An async function to apply to each item in
35 + * `coll`.
36 + * The array index is not passed to the iteratee.
37 + * If you need the index, use `eachOfLimit`.
38 + * Invoked with (item, callback).
39 + * @param {Function} [callback] - A callback which is called when all
40 + * `iteratee` functions have finished, or an error occurs. Invoked with (err).
41 + */
42 +function eachLimit(coll, limit, iteratee, callback) {
43 + (0, _eachOfLimit2.default)(limit)(coll, (0, _withoutIndex2.default)((0, _wrapAsync2.default)(iteratee)), callback);
44 +}
45 +module.exports = exports['default'];
...\ No newline at end of file ...\ No newline at end of file
1 +'use strict';
2 +
3 +Object.defineProperty(exports, "__esModule", {
4 + value: true
5 +});
6 +
7 +exports.default = function (coll, iteratee, callback) {
8 + var eachOfImplementation = (0, _isArrayLike2.default)(coll) ? eachOfArrayLike : eachOfGeneric;
9 + eachOfImplementation(coll, (0, _wrapAsync2.default)(iteratee), callback);
10 +};
11 +
12 +var _isArrayLike = require('lodash/isArrayLike');
13 +
14 +var _isArrayLike2 = _interopRequireDefault(_isArrayLike);
15 +
16 +var _breakLoop = require('./internal/breakLoop');
17 +
18 +var _breakLoop2 = _interopRequireDefault(_breakLoop);
19 +
20 +var _eachOfLimit = require('./eachOfLimit');
21 +
22 +var _eachOfLimit2 = _interopRequireDefault(_eachOfLimit);
23 +
24 +var _doLimit = require('./internal/doLimit');
25 +
26 +var _doLimit2 = _interopRequireDefault(_doLimit);
27 +
28 +var _noop = require('lodash/noop');
29 +
30 +var _noop2 = _interopRequireDefault(_noop);
31 +
32 +var _once = require('./internal/once');
33 +
34 +var _once2 = _interopRequireDefault(_once);
35 +
36 +var _onlyOnce = require('./internal/onlyOnce');
37 +
38 +var _onlyOnce2 = _interopRequireDefault(_onlyOnce);
39 +
40 +var _wrapAsync = require('./internal/wrapAsync');
41 +
42 +var _wrapAsync2 = _interopRequireDefault(_wrapAsync);
43 +
44 +function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }
45 +
46 +// eachOf implementation optimized for array-likes
47 +function eachOfArrayLike(coll, iteratee, callback) {
48 + callback = (0, _once2.default)(callback || _noop2.default);
49 + var index = 0,
50 + completed = 0,
51 + length = coll.length;
52 + if (length === 0) {
53 + callback(null);
54 + }
55 +
56 + function iteratorCallback(err, value) {
57 + if (err) {
58 + callback(err);
59 + } else if (++completed === length || value === _breakLoop2.default) {
60 + callback(null);
61 + }
62 + }
63 +
64 + for (; index < length; index++) {
65 + iteratee(coll[index], index, (0, _onlyOnce2.default)(iteratorCallback));
66 + }
67 +}
68 +
69 +// a generic version of eachOf which can handle array, object, and iterator cases.
70 +var eachOfGeneric = (0, _doLimit2.default)(_eachOfLimit2.default, Infinity);
71 +
72 +/**
73 + * Like [`each`]{@link module:Collections.each}, except that it passes the key (or index) as the second argument
74 + * to the iteratee.
75 + *
76 + * @name eachOf
77 + * @static
78 + * @memberOf module:Collections
79 + * @method
80 + * @alias forEachOf
81 + * @category Collection
82 + * @see [async.each]{@link module:Collections.each}
83 + * @param {Array|Iterable|Object} coll - A collection to iterate over.
84 + * @param {AsyncFunction} iteratee - A function to apply to each
85 + * item in `coll`.
86 + * The `key` is the item's key, or index in the case of an array.
87 + * Invoked with (item, key, callback).
88 + * @param {Function} [callback] - A callback which is called when all
89 + * `iteratee` functions have finished, or an error occurs. Invoked with (err).
90 + * @example
91 + *
92 + * var obj = {dev: "/dev.json", test: "/test.json", prod: "/prod.json"};
93 + * var configs = {};
94 + *
95 + * async.forEachOf(obj, function (value, key, callback) {
96 + * fs.readFile(__dirname + value, "utf8", function (err, data) {
97 + * if (err) return callback(err);
98 + * try {
99 + * configs[key] = JSON.parse(data);
100 + * } catch (e) {
101 + * return callback(e);
102 + * }
103 + * callback();
104 + * });
105 + * }, function (err) {
106 + * if (err) console.error(err.message);
107 + * // configs is now a map of JSON data
108 + * doSomethingWith(configs);
109 + * });
110 + */
111 +module.exports = exports['default'];
...\ No newline at end of file ...\ No newline at end of file
1 +'use strict';
2 +
3 +Object.defineProperty(exports, "__esModule", {
4 + value: true
5 +});
6 +exports.default = eachOfLimit;
7 +
8 +var _eachOfLimit2 = require('./internal/eachOfLimit');
9 +
10 +var _eachOfLimit3 = _interopRequireDefault(_eachOfLimit2);
11 +
12 +var _wrapAsync = require('./internal/wrapAsync');
13 +
14 +var _wrapAsync2 = _interopRequireDefault(_wrapAsync);
15 +
16 +function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }
17 +
18 +/**
19 + * The same as [`eachOf`]{@link module:Collections.eachOf} but runs a maximum of `limit` async operations at a
20 + * time.
21 + *
22 + * @name eachOfLimit
23 + * @static
24 + * @memberOf module:Collections
25 + * @method
26 + * @see [async.eachOf]{@link module:Collections.eachOf}
27 + * @alias forEachOfLimit
28 + * @category Collection
29 + * @param {Array|Iterable|Object} coll - A collection to iterate over.
30 + * @param {number} limit - The maximum number of async operations at a time.
31 + * @param {AsyncFunction} iteratee - An async function to apply to each
32 + * item in `coll`. The `key` is the item's key, or index in the case of an
33 + * array.
34 + * Invoked with (item, key, callback).
35 + * @param {Function} [callback] - A callback which is called when all
36 + * `iteratee` functions have finished, or an error occurs. Invoked with (err).
37 + */
38 +function eachOfLimit(coll, limit, iteratee, callback) {
39 + (0, _eachOfLimit3.default)(limit)(coll, (0, _wrapAsync2.default)(iteratee), callback);
40 +}
41 +module.exports = exports['default'];
...\ No newline at end of file ...\ No newline at end of file
1 +'use strict';
2 +
3 +Object.defineProperty(exports, "__esModule", {
4 + value: true
5 +});
6 +
7 +var _eachOfLimit = require('./eachOfLimit');
8 +
9 +var _eachOfLimit2 = _interopRequireDefault(_eachOfLimit);
10 +
11 +var _doLimit = require('./internal/doLimit');
12 +
13 +var _doLimit2 = _interopRequireDefault(_doLimit);
14 +
15 +function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }
16 +
17 +/**
18 + * The same as [`eachOf`]{@link module:Collections.eachOf} but runs only a single async operation at a time.
19 + *
20 + * @name eachOfSeries
21 + * @static
22 + * @memberOf module:Collections
23 + * @method
24 + * @see [async.eachOf]{@link module:Collections.eachOf}
25 + * @alias forEachOfSeries
26 + * @category Collection
27 + * @param {Array|Iterable|Object} coll - A collection to iterate over.
28 + * @param {AsyncFunction} iteratee - An async function to apply to each item in
29 + * `coll`.
30 + * Invoked with (item, key, callback).
31 + * @param {Function} [callback] - A callback which is called when all `iteratee`
32 + * functions have finished, or an error occurs. Invoked with (err).
33 + */
34 +exports.default = (0, _doLimit2.default)(_eachOfLimit2.default, 1);
35 +module.exports = exports['default'];
...\ No newline at end of file ...\ No newline at end of file
1 +'use strict';
2 +
3 +Object.defineProperty(exports, "__esModule", {
4 + value: true
5 +});
6 +
7 +var _eachLimit = require('./eachLimit');
8 +
9 +var _eachLimit2 = _interopRequireDefault(_eachLimit);
10 +
11 +var _doLimit = require('./internal/doLimit');
12 +
13 +var _doLimit2 = _interopRequireDefault(_doLimit);
14 +
15 +function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }
16 +
17 +/**
18 + * The same as [`each`]{@link module:Collections.each} but runs only a single async operation at a time.
19 + *
20 + * @name eachSeries
21 + * @static
22 + * @memberOf module:Collections
23 + * @method
24 + * @see [async.each]{@link module:Collections.each}
25 + * @alias forEachSeries
26 + * @category Collection
27 + * @param {Array|Iterable|Object} coll - A collection to iterate over.
28 + * @param {AsyncFunction} iteratee - An async function to apply to each
29 + * item in `coll`.
30 + * The array index is not passed to the iteratee.
31 + * If you need the index, use `eachOfSeries`.
32 + * Invoked with (item, callback).
33 + * @param {Function} [callback] - A callback which is called when all
34 + * `iteratee` functions have finished, or an error occurs. Invoked with (err).
35 + */
36 +exports.default = (0, _doLimit2.default)(_eachLimit2.default, 1);
37 +module.exports = exports['default'];
...\ No newline at end of file ...\ No newline at end of file
1 +'use strict';
2 +
3 +Object.defineProperty(exports, "__esModule", {
4 + value: true
5 +});
6 +exports.default = ensureAsync;
7 +
8 +var _setImmediate = require('./internal/setImmediate');
9 +
10 +var _setImmediate2 = _interopRequireDefault(_setImmediate);
11 +
12 +var _initialParams = require('./internal/initialParams');
13 +
14 +var _initialParams2 = _interopRequireDefault(_initialParams);
15 +
16 +var _wrapAsync = require('./internal/wrapAsync');
17 +
18 +function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }
19 +
20 +/**
21 + * Wrap an async function and ensure it calls its callback on a later tick of
22 + * the event loop. If the function already calls its callback on a next tick,
23 + * no extra deferral is added. This is useful for preventing stack overflows
24 + * (`RangeError: Maximum call stack size exceeded`) and generally keeping
25 + * [Zalgo](http://blog.izs.me/post/59142742143/designing-apis-for-asynchrony)
26 + * contained. ES2017 `async` functions are returned as-is -- they are immune
27 + * to Zalgo's corrupting influences, as they always resolve on a later tick.
28 + *
29 + * @name ensureAsync
30 + * @static
31 + * @memberOf module:Utils
32 + * @method
33 + * @category Util
34 + * @param {AsyncFunction} fn - an async function, one that expects a node-style
35 + * callback as its last argument.
36 + * @returns {AsyncFunction} Returns a wrapped function with the exact same call
37 + * signature as the function passed in.
38 + * @example
39 + *
40 + * function sometimesAsync(arg, callback) {
41 + * if (cache[arg]) {
42 + * return callback(null, cache[arg]); // this would be synchronous!!
43 + * } else {
44 + * doSomeIO(arg, callback); // this IO would be asynchronous
45 + * }
46 + * }
47 + *
48 + * // this has a risk of stack overflows if many results are cached in a row
49 + * async.mapSeries(args, sometimesAsync, done);
50 + *
51 + * // this will defer sometimesAsync's callback if necessary,
52 + * // preventing stack overflows
53 + * async.mapSeries(args, async.ensureAsync(sometimesAsync), done);
54 + */
55 +function ensureAsync(fn) {
56 + if ((0, _wrapAsync.isAsync)(fn)) return fn;
57 + return (0, _initialParams2.default)(function (args, callback) {
58 + var sync = true;
59 + args.push(function () {
60 + var innerArgs = arguments;
61 + if (sync) {
62 + (0, _setImmediate2.default)(function () {
63 + callback.apply(null, innerArgs);
64 + });
65 + } else {
66 + callback.apply(null, innerArgs);
67 + }
68 + });
69 + fn.apply(this, args);
70 + sync = false;
71 + });
72 +}
73 +module.exports = exports['default'];
...\ No newline at end of file ...\ No newline at end of file
1 +'use strict';
2 +
3 +Object.defineProperty(exports, "__esModule", {
4 + value: true
5 +});
6 +
7 +var _createTester = require('./internal/createTester');
8 +
9 +var _createTester2 = _interopRequireDefault(_createTester);
10 +
11 +var _doParallel = require('./internal/doParallel');
12 +
13 +var _doParallel2 = _interopRequireDefault(_doParallel);
14 +
15 +var _notId = require('./internal/notId');
16 +
17 +var _notId2 = _interopRequireDefault(_notId);
18 +
19 +function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }
20 +
21 +/**
22 + * Returns `true` if every element in `coll` satisfies an async test. If any
23 + * iteratee call returns `false`, the main `callback` is immediately called.
24 + *
25 + * @name every
26 + * @static
27 + * @memberOf module:Collections
28 + * @method
29 + * @alias all
30 + * @category Collection
31 + * @param {Array|Iterable|Object} coll - A collection to iterate over.
32 + * @param {AsyncFunction} iteratee - An async truth test to apply to each item
33 + * in the collection in parallel.
34 + * The iteratee must complete with a boolean result value.
35 + * Invoked with (item, callback).
36 + * @param {Function} [callback] - A callback which is called after all the
37 + * `iteratee` functions have finished. Result will be either `true` or `false`
38 + * depending on the values of the async tests. Invoked with (err, result).
39 + * @example
40 + *
41 + * async.every(['file1','file2','file3'], function(filePath, callback) {
42 + * fs.access(filePath, function(err) {
43 + * callback(null, !err)
44 + * });
45 + * }, function(err, result) {
46 + * // if result is true then every file exists
47 + * });
48 + */
49 +exports.default = (0, _doParallel2.default)((0, _createTester2.default)(_notId2.default, _notId2.default));
50 +module.exports = exports['default'];
...\ No newline at end of file ...\ No newline at end of file
1 +'use strict';
2 +
3 +Object.defineProperty(exports, "__esModule", {
4 + value: true
5 +});
6 +
7 +var _createTester = require('./internal/createTester');
8 +
9 +var _createTester2 = _interopRequireDefault(_createTester);
10 +
11 +var _doParallelLimit = require('./internal/doParallelLimit');
12 +
13 +var _doParallelLimit2 = _interopRequireDefault(_doParallelLimit);
14 +
15 +var _notId = require('./internal/notId');
16 +
17 +var _notId2 = _interopRequireDefault(_notId);
18 +
19 +function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }
20 +
21 +/**
22 + * The same as [`every`]{@link module:Collections.every} but runs a maximum of `limit` async operations at a time.
23 + *
24 + * @name everyLimit
25 + * @static
26 + * @memberOf module:Collections
27 + * @method
28 + * @see [async.every]{@link module:Collections.every}
29 + * @alias allLimit
30 + * @category Collection
31 + * @param {Array|Iterable|Object} coll - A collection to iterate over.
32 + * @param {number} limit - The maximum number of async operations at a time.
33 + * @param {AsyncFunction} iteratee - An async truth test to apply to each item
34 + * in the collection in parallel.
35 + * The iteratee must complete with a boolean result value.
36 + * Invoked with (item, callback).
37 + * @param {Function} [callback] - A callback which is called after all the
38 + * `iteratee` functions have finished. Result will be either `true` or `false`
39 + * depending on the values of the async tests. Invoked with (err, result).
40 + */
41 +exports.default = (0, _doParallelLimit2.default)((0, _createTester2.default)(_notId2.default, _notId2.default));
42 +module.exports = exports['default'];
...\ No newline at end of file ...\ No newline at end of file
1 +'use strict';
2 +
3 +Object.defineProperty(exports, "__esModule", {
4 + value: true
5 +});
6 +
7 +var _everyLimit = require('./everyLimit');
8 +
9 +var _everyLimit2 = _interopRequireDefault(_everyLimit);
10 +
11 +var _doLimit = require('./internal/doLimit');
12 +
13 +var _doLimit2 = _interopRequireDefault(_doLimit);
14 +
15 +function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }
16 +
17 +/**
18 + * The same as [`every`]{@link module:Collections.every} but runs only a single async operation at a time.
19 + *
20 + * @name everySeries
21 + * @static
22 + * @memberOf module:Collections
23 + * @method
24 + * @see [async.every]{@link module:Collections.every}
25 + * @alias allSeries
26 + * @category Collection
27 + * @param {Array|Iterable|Object} coll - A collection to iterate over.
28 + * @param {AsyncFunction} iteratee - An async truth test to apply to each item
29 + * in the collection in series.
30 + * The iteratee must complete with a boolean result value.
31 + * Invoked with (item, callback).
32 + * @param {Function} [callback] - A callback which is called after all the
33 + * `iteratee` functions have finished. Result will be either `true` or `false`
34 + * depending on the values of the async tests. Invoked with (err, result).
35 + */
36 +exports.default = (0, _doLimit2.default)(_everyLimit2.default, 1);
37 +module.exports = exports['default'];
...\ No newline at end of file ...\ No newline at end of file
1 +'use strict';
2 +
3 +Object.defineProperty(exports, "__esModule", {
4 + value: true
5 +});
6 +
7 +var _filter = require('./internal/filter');
8 +
9 +var _filter2 = _interopRequireDefault(_filter);
10 +
11 +var _doParallel = require('./internal/doParallel');
12 +
13 +var _doParallel2 = _interopRequireDefault(_doParallel);
14 +
15 +function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }
16 +
17 +/**
18 + * Returns a new array of all the values in `coll` which pass an async truth
19 + * test. This operation is performed in parallel, but the results array will be
20 + * in the same order as the original.
21 + *
22 + * @name filter
23 + * @static
24 + * @memberOf module:Collections
25 + * @method
26 + * @alias select
27 + * @category Collection
28 + * @param {Array|Iterable|Object} coll - A collection to iterate over.
29 + * @param {Function} iteratee - A truth test to apply to each item in `coll`.
30 + * The `iteratee` is passed a `callback(err, truthValue)`, which must be called
31 + * with a boolean argument once it has completed. Invoked with (item, callback).
32 + * @param {Function} [callback] - A callback which is called after all the
33 + * `iteratee` functions have finished. Invoked with (err, results).
34 + * @example
35 + *
36 + * async.filter(['file1','file2','file3'], function(filePath, callback) {
37 + * fs.access(filePath, function(err) {
38 + * callback(null, !err)
39 + * });
40 + * }, function(err, results) {
41 + * // results now equals an array of the existing files
42 + * });
43 + */
44 +exports.default = (0, _doParallel2.default)(_filter2.default);
45 +module.exports = exports['default'];
...\ No newline at end of file ...\ No newline at end of file
1 +'use strict';
2 +
3 +Object.defineProperty(exports, "__esModule", {
4 + value: true
5 +});
6 +
7 +var _filter = require('./internal/filter');
8 +
9 +var _filter2 = _interopRequireDefault(_filter);
10 +
11 +var _doParallelLimit = require('./internal/doParallelLimit');
12 +
13 +var _doParallelLimit2 = _interopRequireDefault(_doParallelLimit);
14 +
15 +function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }
16 +
17 +/**
18 + * The same as [`filter`]{@link module:Collections.filter} but runs a maximum of `limit` async operations at a
19 + * time.
20 + *
21 + * @name filterLimit
22 + * @static
23 + * @memberOf module:Collections
24 + * @method
25 + * @see [async.filter]{@link module:Collections.filter}
26 + * @alias selectLimit
27 + * @category Collection
28 + * @param {Array|Iterable|Object} coll - A collection to iterate over.
29 + * @param {number} limit - The maximum number of async operations at a time.
30 + * @param {Function} iteratee - A truth test to apply to each item in `coll`.
31 + * The `iteratee` is passed a `callback(err, truthValue)`, which must be called
32 + * with a boolean argument once it has completed. Invoked with (item, callback).
33 + * @param {Function} [callback] - A callback which is called after all the
34 + * `iteratee` functions have finished. Invoked with (err, results).
35 + */
36 +exports.default = (0, _doParallelLimit2.default)(_filter2.default);
37 +module.exports = exports['default'];
...\ No newline at end of file ...\ No newline at end of file
1 +'use strict';
2 +
3 +Object.defineProperty(exports, "__esModule", {
4 + value: true
5 +});
6 +
7 +var _filterLimit = require('./filterLimit');
8 +
9 +var _filterLimit2 = _interopRequireDefault(_filterLimit);
10 +
11 +var _doLimit = require('./internal/doLimit');
12 +
13 +var _doLimit2 = _interopRequireDefault(_doLimit);
14 +
15 +function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }
16 +
17 +/**
18 + * The same as [`filter`]{@link module:Collections.filter} but runs only a single async operation at a time.
19 + *
20 + * @name filterSeries
21 + * @static
22 + * @memberOf module:Collections
23 + * @method
24 + * @see [async.filter]{@link module:Collections.filter}
25 + * @alias selectSeries
26 + * @category Collection
27 + * @param {Array|Iterable|Object} coll - A collection to iterate over.
28 + * @param {Function} iteratee - A truth test to apply to each item in `coll`.
29 + * The `iteratee` is passed a `callback(err, truthValue)`, which must be called
30 + * with a boolean argument once it has completed. Invoked with (item, callback).
31 + * @param {Function} [callback] - A callback which is called after all the
32 + * `iteratee` functions have finished. Invoked with (err, results)
33 + */
34 +exports.default = (0, _doLimit2.default)(_filterLimit2.default, 1);
35 +module.exports = exports['default'];
...\ No newline at end of file ...\ No newline at end of file
1 +'use strict';
2 +
3 +Object.defineProperty(exports, "__esModule", {
4 + value: true
5 +});
6 +
7 +var _identity = require('lodash/identity');
8 +
9 +var _identity2 = _interopRequireDefault(_identity);
10 +
11 +var _createTester = require('./internal/createTester');
12 +
13 +var _createTester2 = _interopRequireDefault(_createTester);
14 +
15 +var _doParallel = require('./internal/doParallel');
16 +
17 +var _doParallel2 = _interopRequireDefault(_doParallel);
18 +
19 +var _findGetResult = require('./internal/findGetResult');
20 +
21 +var _findGetResult2 = _interopRequireDefault(_findGetResult);
22 +
23 +function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }
24 +
25 +/**
26 + * Returns the first value in `coll` that passes an async truth test. The
27 + * `iteratee` is applied in parallel, meaning the first iteratee to return
28 + * `true` will fire the detect `callback` with that result. That means the
29 + * result might not be the first item in the original `coll` (in terms of order)
30 + * that passes the test.
31 +
32 + * If order within the original `coll` is important, then look at
33 + * [`detectSeries`]{@link module:Collections.detectSeries}.
34 + *
35 + * @name detect
36 + * @static
37 + * @memberOf module:Collections
38 + * @method
39 + * @alias find
40 + * @category Collections
41 + * @param {Array|Iterable|Object} coll - A collection to iterate over.
42 + * @param {AsyncFunction} iteratee - A truth test to apply to each item in `coll`.
43 + * The iteratee must complete with a boolean value as its result.
44 + * Invoked with (item, callback).
45 + * @param {Function} [callback] - A callback which is called as soon as any
46 + * iteratee returns `true`, or after all the `iteratee` functions have finished.
47 + * Result will be the first item in the array that passes the truth test
48 + * (iteratee) or the value `undefined` if none passed. Invoked with
49 + * (err, result).
50 + * @example
51 + *
52 + * async.detect(['file1','file2','file3'], function(filePath, callback) {
53 + * fs.access(filePath, function(err) {
54 + * callback(null, !err)
55 + * });
56 + * }, function(err, result) {
57 + * // result now equals the first file in the list that exists
58 + * });
59 + */
60 +exports.default = (0, _doParallel2.default)((0, _createTester2.default)(_identity2.default, _findGetResult2.default));
61 +module.exports = exports['default'];
...\ No newline at end of file ...\ No newline at end of file
1 +'use strict';
2 +
3 +Object.defineProperty(exports, "__esModule", {
4 + value: true
5 +});
6 +
7 +var _identity = require('lodash/identity');
8 +
9 +var _identity2 = _interopRequireDefault(_identity);
10 +
11 +var _createTester = require('./internal/createTester');
12 +
13 +var _createTester2 = _interopRequireDefault(_createTester);
14 +
15 +var _doParallelLimit = require('./internal/doParallelLimit');
16 +
17 +var _doParallelLimit2 = _interopRequireDefault(_doParallelLimit);
18 +
19 +var _findGetResult = require('./internal/findGetResult');
20 +
21 +var _findGetResult2 = _interopRequireDefault(_findGetResult);
22 +
23 +function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }
24 +
25 +/**
26 + * The same as [`detect`]{@link module:Collections.detect} but runs a maximum of `limit` async operations at a
27 + * time.
28 + *
29 + * @name detectLimit
30 + * @static
31 + * @memberOf module:Collections
32 + * @method
33 + * @see [async.detect]{@link module:Collections.detect}
34 + * @alias findLimit
35 + * @category Collections
36 + * @param {Array|Iterable|Object} coll - A collection to iterate over.
37 + * @param {number} limit - The maximum number of async operations at a time.
38 + * @param {AsyncFunction} iteratee - A truth test to apply to each item in `coll`.
39 + * The iteratee must complete with a boolean value as its result.
40 + * Invoked with (item, callback).
41 + * @param {Function} [callback] - A callback which is called as soon as any
42 + * iteratee returns `true`, or after all the `iteratee` functions have finished.
43 + * Result will be the first item in the array that passes the truth test
44 + * (iteratee) or the value `undefined` if none passed. Invoked with
45 + * (err, result).
46 + */
47 +exports.default = (0, _doParallelLimit2.default)((0, _createTester2.default)(_identity2.default, _findGetResult2.default));
48 +module.exports = exports['default'];
...\ No newline at end of file ...\ No newline at end of file
1 +'use strict';
2 +
3 +Object.defineProperty(exports, "__esModule", {
4 + value: true
5 +});
6 +
7 +var _detectLimit = require('./detectLimit');
8 +
9 +var _detectLimit2 = _interopRequireDefault(_detectLimit);
10 +
11 +var _doLimit = require('./internal/doLimit');
12 +
13 +var _doLimit2 = _interopRequireDefault(_doLimit);
14 +
15 +function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }
16 +
17 +/**
18 + * The same as [`detect`]{@link module:Collections.detect} but runs only a single async operation at a time.
19 + *
20 + * @name detectSeries
21 + * @static
22 + * @memberOf module:Collections
23 + * @method
24 + * @see [async.detect]{@link module:Collections.detect}
25 + * @alias findSeries
26 + * @category Collections
27 + * @param {Array|Iterable|Object} coll - A collection to iterate over.
28 + * @param {AsyncFunction} iteratee - A truth test to apply to each item in `coll`.
29 + * The iteratee must complete with a boolean value as its result.
30 + * Invoked with (item, callback).
31 + * @param {Function} [callback] - A callback which is called as soon as any
32 + * iteratee returns `true`, or after all the `iteratee` functions have finished.
33 + * Result will be the first item in the array that passes the truth test
34 + * (iteratee) or the value `undefined` if none passed. Invoked with
35 + * (err, result).
36 + */
37 +exports.default = (0, _doLimit2.default)(_detectLimit2.default, 1);
38 +module.exports = exports['default'];
...\ No newline at end of file ...\ No newline at end of file
1 +'use strict';
2 +
3 +Object.defineProperty(exports, "__esModule", {
4 + value: true
5 +});
6 +exports.default = reduce;
7 +
8 +var _eachOfSeries = require('./eachOfSeries');
9 +
10 +var _eachOfSeries2 = _interopRequireDefault(_eachOfSeries);
11 +
12 +var _noop = require('lodash/noop');
13 +
14 +var _noop2 = _interopRequireDefault(_noop);
15 +
16 +var _once = require('./internal/once');
17 +
18 +var _once2 = _interopRequireDefault(_once);
19 +
20 +var _wrapAsync = require('./internal/wrapAsync');
21 +
22 +var _wrapAsync2 = _interopRequireDefault(_wrapAsync);
23 +
24 +function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }
25 +
26 +/**
27 + * Reduces `coll` into a single value using an async `iteratee` to return each
28 + * successive step. `memo` is the initial state of the reduction. This function
29 + * only operates in series.
30 + *
31 + * For performance reasons, it may make sense to split a call to this function
32 + * into a parallel map, and then use the normal `Array.prototype.reduce` on the
33 + * results. This function is for situations where each step in the reduction
34 + * needs to be async; if you can get the data before reducing it, then it's
35 + * probably a good idea to do so.
36 + *
37 + * @name reduce
38 + * @static
39 + * @memberOf module:Collections
40 + * @method
41 + * @alias inject
42 + * @alias foldl
43 + * @category Collection
44 + * @param {Array|Iterable|Object} coll - A collection to iterate over.
45 + * @param {*} memo - The initial state of the reduction.
46 + * @param {AsyncFunction} iteratee - A function applied to each item in the
47 + * array to produce the next step in the reduction.
48 + * The `iteratee` should complete with the next state of the reduction.
49 + * If the iteratee complete with an error, the reduction is stopped and the
50 + * main `callback` is immediately called with the error.
51 + * Invoked with (memo, item, callback).
52 + * @param {Function} [callback] - A callback which is called after all the
53 + * `iteratee` functions have finished. Result is the reduced value. Invoked with
54 + * (err, result).
55 + * @example
56 + *
57 + * async.reduce([1,2,3], 0, function(memo, item, callback) {
58 + * // pointless async:
59 + * process.nextTick(function() {
60 + * callback(null, memo + item)
61 + * });
62 + * }, function(err, result) {
63 + * // result is now equal to the last value of memo, which is 6
64 + * });
65 + */
66 +function reduce(coll, memo, iteratee, callback) {
67 + callback = (0, _once2.default)(callback || _noop2.default);
68 + var _iteratee = (0, _wrapAsync2.default)(iteratee);
69 + (0, _eachOfSeries2.default)(coll, function (x, i, callback) {
70 + _iteratee(memo, x, function (err, v) {
71 + memo = v;
72 + callback(err);
73 + });
74 + }, function (err) {
75 + callback(err, memo);
76 + });
77 +}
78 +module.exports = exports['default'];
...\ No newline at end of file ...\ No newline at end of file
1 +'use strict';
2 +
3 +Object.defineProperty(exports, "__esModule", {
4 + value: true
5 +});
6 +exports.default = reduceRight;
7 +
8 +var _reduce = require('./reduce');
9 +
10 +var _reduce2 = _interopRequireDefault(_reduce);
11 +
12 +var _slice = require('./internal/slice');
13 +
14 +var _slice2 = _interopRequireDefault(_slice);
15 +
16 +function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }
17 +
18 +/**
19 + * Same as [`reduce`]{@link module:Collections.reduce}, only operates on `array` in reverse order.
20 + *
21 + * @name reduceRight
22 + * @static
23 + * @memberOf module:Collections
24 + * @method
25 + * @see [async.reduce]{@link module:Collections.reduce}
26 + * @alias foldr
27 + * @category Collection
28 + * @param {Array} array - A collection to iterate over.
29 + * @param {*} memo - The initial state of the reduction.
30 + * @param {AsyncFunction} iteratee - A function applied to each item in the
31 + * array to produce the next step in the reduction.
32 + * The `iteratee` should complete with the next state of the reduction.
33 + * If the iteratee complete with an error, the reduction is stopped and the
34 + * main `callback` is immediately called with the error.
35 + * Invoked with (memo, item, callback).
36 + * @param {Function} [callback] - A callback which is called after all the
37 + * `iteratee` functions have finished. Result is the reduced value. Invoked with
38 + * (err, result).
39 + */
40 +function reduceRight(array, memo, iteratee, callback) {
41 + var reversed = (0, _slice2.default)(array).reverse();
42 + (0, _reduce2.default)(reversed, memo, iteratee, callback);
43 +}
44 +module.exports = exports['default'];
...\ No newline at end of file ...\ No newline at end of file
1 +'use strict';
2 +
3 +Object.defineProperty(exports, "__esModule", {
4 + value: true
5 +});
6 +exports.default = eachLimit;
7 +
8 +var _eachOf = require('./eachOf');
9 +
10 +var _eachOf2 = _interopRequireDefault(_eachOf);
11 +
12 +var _withoutIndex = require('./internal/withoutIndex');
13 +
14 +var _withoutIndex2 = _interopRequireDefault(_withoutIndex);
15 +
16 +var _wrapAsync = require('./internal/wrapAsync');
17 +
18 +var _wrapAsync2 = _interopRequireDefault(_wrapAsync);
19 +
20 +function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }
21 +
22 +/**
23 + * Applies the function `iteratee` to each item in `coll`, in parallel.
24 + * The `iteratee` is called with an item from the list, and a callback for when
25 + * it has finished. If the `iteratee` passes an error to its `callback`, the
26 + * main `callback` (for the `each` function) is immediately called with the
27 + * error.
28 + *
29 + * Note, that since this function applies `iteratee` to each item in parallel,
30 + * there is no guarantee that the iteratee functions will complete in order.
31 + *
32 + * @name each
33 + * @static
34 + * @memberOf module:Collections
35 + * @method
36 + * @alias forEach
37 + * @category Collection
38 + * @param {Array|Iterable|Object} coll - A collection to iterate over.
39 + * @param {AsyncFunction} iteratee - An async function to apply to
40 + * each item in `coll`. Invoked with (item, callback).
41 + * The array index is not passed to the iteratee.
42 + * If you need the index, use `eachOf`.
43 + * @param {Function} [callback] - A callback which is called when all
44 + * `iteratee` functions have finished, or an error occurs. Invoked with (err).
45 + * @example
46 + *
47 + * // assuming openFiles is an array of file names and saveFile is a function
48 + * // to save the modified contents of that file:
49 + *
50 + * async.each(openFiles, saveFile, function(err){
51 + * // if any of the saves produced an error, err would equal that error
52 + * });
53 + *
54 + * // assuming openFiles is an array of file names
55 + * async.each(openFiles, function(file, callback) {
56 + *
57 + * // Perform operation on file here.
58 + * console.log('Processing file ' + file);
59 + *
60 + * if( file.length > 32 ) {
61 + * console.log('This file name is too long');
62 + * callback('File name too long');
63 + * } else {
64 + * // Do work to process file here
65 + * console.log('File processed');
66 + * callback();
67 + * }
68 + * }, function(err) {
69 + * // if any of the file processing produced an error, err would equal that error
70 + * if( err ) {
71 + * // One of the iterations produced an error.
72 + * // All processing will now stop.
73 + * console.log('A file failed to process');
74 + * } else {
75 + * console.log('All files have been processed successfully');
76 + * }
77 + * });
78 + */
79 +function eachLimit(coll, iteratee, callback) {
80 + (0, _eachOf2.default)(coll, (0, _withoutIndex2.default)((0, _wrapAsync2.default)(iteratee)), callback);
81 +}
82 +module.exports = exports['default'];
...\ No newline at end of file ...\ No newline at end of file
1 +'use strict';
2 +
3 +Object.defineProperty(exports, "__esModule", {
4 + value: true
5 +});
6 +exports.default = eachLimit;
7 +
8 +var _eachOfLimit = require('./internal/eachOfLimit');
9 +
10 +var _eachOfLimit2 = _interopRequireDefault(_eachOfLimit);
11 +
12 +var _withoutIndex = require('./internal/withoutIndex');
13 +
14 +var _withoutIndex2 = _interopRequireDefault(_withoutIndex);
15 +
16 +var _wrapAsync = require('./internal/wrapAsync');
17 +
18 +var _wrapAsync2 = _interopRequireDefault(_wrapAsync);
19 +
20 +function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }
21 +
22 +/**
23 + * The same as [`each`]{@link module:Collections.each} but runs a maximum of `limit` async operations at a time.
24 + *
25 + * @name eachLimit
26 + * @static
27 + * @memberOf module:Collections
28 + * @method
29 + * @see [async.each]{@link module:Collections.each}
30 + * @alias forEachLimit
31 + * @category Collection
32 + * @param {Array|Iterable|Object} coll - A collection to iterate over.
33 + * @param {number} limit - The maximum number of async operations at a time.
34 + * @param {AsyncFunction} iteratee - An async function to apply to each item in
35 + * `coll`.
36 + * The array index is not passed to the iteratee.
37 + * If you need the index, use `eachOfLimit`.
38 + * Invoked with (item, callback).
39 + * @param {Function} [callback] - A callback which is called when all
40 + * `iteratee` functions have finished, or an error occurs. Invoked with (err).
41 + */
42 +function eachLimit(coll, limit, iteratee, callback) {
43 + (0, _eachOfLimit2.default)(limit)(coll, (0, _withoutIndex2.default)((0, _wrapAsync2.default)(iteratee)), callback);
44 +}
45 +module.exports = exports['default'];
...\ No newline at end of file ...\ No newline at end of file
1 +'use strict';
2 +
3 +Object.defineProperty(exports, "__esModule", {
4 + value: true
5 +});
6 +
7 +exports.default = function (coll, iteratee, callback) {
8 + var eachOfImplementation = (0, _isArrayLike2.default)(coll) ? eachOfArrayLike : eachOfGeneric;
9 + eachOfImplementation(coll, (0, _wrapAsync2.default)(iteratee), callback);
10 +};
11 +
12 +var _isArrayLike = require('lodash/isArrayLike');
13 +
14 +var _isArrayLike2 = _interopRequireDefault(_isArrayLike);
15 +
16 +var _breakLoop = require('./internal/breakLoop');
17 +
18 +var _breakLoop2 = _interopRequireDefault(_breakLoop);
19 +
20 +var _eachOfLimit = require('./eachOfLimit');
21 +
22 +var _eachOfLimit2 = _interopRequireDefault(_eachOfLimit);
23 +
24 +var _doLimit = require('./internal/doLimit');
25 +
26 +var _doLimit2 = _interopRequireDefault(_doLimit);
27 +
28 +var _noop = require('lodash/noop');
29 +
30 +var _noop2 = _interopRequireDefault(_noop);
31 +
32 +var _once = require('./internal/once');
33 +
34 +var _once2 = _interopRequireDefault(_once);
35 +
36 +var _onlyOnce = require('./internal/onlyOnce');
37 +
38 +var _onlyOnce2 = _interopRequireDefault(_onlyOnce);
39 +
40 +var _wrapAsync = require('./internal/wrapAsync');
41 +
42 +var _wrapAsync2 = _interopRequireDefault(_wrapAsync);
43 +
44 +function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }
45 +
46 +// eachOf implementation optimized for array-likes
47 +function eachOfArrayLike(coll, iteratee, callback) {
48 + callback = (0, _once2.default)(callback || _noop2.default);
49 + var index = 0,
50 + completed = 0,
51 + length = coll.length;
52 + if (length === 0) {
53 + callback(null);
54 + }
55 +
56 + function iteratorCallback(err, value) {
57 + if (err) {
58 + callback(err);
59 + } else if (++completed === length || value === _breakLoop2.default) {
60 + callback(null);
61 + }
62 + }
63 +
64 + for (; index < length; index++) {
65 + iteratee(coll[index], index, (0, _onlyOnce2.default)(iteratorCallback));
66 + }
67 +}
68 +
69 +// a generic version of eachOf which can handle array, object, and iterator cases.
70 +var eachOfGeneric = (0, _doLimit2.default)(_eachOfLimit2.default, Infinity);
71 +
72 +/**
73 + * Like [`each`]{@link module:Collections.each}, except that it passes the key (or index) as the second argument
74 + * to the iteratee.
75 + *
76 + * @name eachOf
77 + * @static
78 + * @memberOf module:Collections
79 + * @method
80 + * @alias forEachOf
81 + * @category Collection
82 + * @see [async.each]{@link module:Collections.each}
83 + * @param {Array|Iterable|Object} coll - A collection to iterate over.
84 + * @param {AsyncFunction} iteratee - A function to apply to each
85 + * item in `coll`.
86 + * The `key` is the item's key, or index in the case of an array.
87 + * Invoked with (item, key, callback).
88 + * @param {Function} [callback] - A callback which is called when all
89 + * `iteratee` functions have finished, or an error occurs. Invoked with (err).
90 + * @example
91 + *
92 + * var obj = {dev: "/dev.json", test: "/test.json", prod: "/prod.json"};
93 + * var configs = {};
94 + *
95 + * async.forEachOf(obj, function (value, key, callback) {
96 + * fs.readFile(__dirname + value, "utf8", function (err, data) {
97 + * if (err) return callback(err);
98 + * try {
99 + * configs[key] = JSON.parse(data);
100 + * } catch (e) {
101 + * return callback(e);
102 + * }
103 + * callback();
104 + * });
105 + * }, function (err) {
106 + * if (err) console.error(err.message);
107 + * // configs is now a map of JSON data
108 + * doSomethingWith(configs);
109 + * });
110 + */
111 +module.exports = exports['default'];
...\ No newline at end of file ...\ No newline at end of file
1 +'use strict';
2 +
3 +Object.defineProperty(exports, "__esModule", {
4 + value: true
5 +});
6 +exports.default = eachOfLimit;
7 +
8 +var _eachOfLimit2 = require('./internal/eachOfLimit');
9 +
10 +var _eachOfLimit3 = _interopRequireDefault(_eachOfLimit2);
11 +
12 +var _wrapAsync = require('./internal/wrapAsync');
13 +
14 +var _wrapAsync2 = _interopRequireDefault(_wrapAsync);
15 +
16 +function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }
17 +
18 +/**
19 + * The same as [`eachOf`]{@link module:Collections.eachOf} but runs a maximum of `limit` async operations at a
20 + * time.
21 + *
22 + * @name eachOfLimit
23 + * @static
24 + * @memberOf module:Collections
25 + * @method
26 + * @see [async.eachOf]{@link module:Collections.eachOf}
27 + * @alias forEachOfLimit
28 + * @category Collection
29 + * @param {Array|Iterable|Object} coll - A collection to iterate over.
30 + * @param {number} limit - The maximum number of async operations at a time.
31 + * @param {AsyncFunction} iteratee - An async function to apply to each
32 + * item in `coll`. The `key` is the item's key, or index in the case of an
33 + * array.
34 + * Invoked with (item, key, callback).
35 + * @param {Function} [callback] - A callback which is called when all
36 + * `iteratee` functions have finished, or an error occurs. Invoked with (err).
37 + */
38 +function eachOfLimit(coll, limit, iteratee, callback) {
39 + (0, _eachOfLimit3.default)(limit)(coll, (0, _wrapAsync2.default)(iteratee), callback);
40 +}
41 +module.exports = exports['default'];
...\ No newline at end of file ...\ No newline at end of file
1 +'use strict';
2 +
3 +Object.defineProperty(exports, "__esModule", {
4 + value: true
5 +});
6 +
7 +var _eachOfLimit = require('./eachOfLimit');
8 +
9 +var _eachOfLimit2 = _interopRequireDefault(_eachOfLimit);
10 +
11 +var _doLimit = require('./internal/doLimit');
12 +
13 +var _doLimit2 = _interopRequireDefault(_doLimit);
14 +
15 +function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }
16 +
17 +/**
18 + * The same as [`eachOf`]{@link module:Collections.eachOf} but runs only a single async operation at a time.
19 + *
20 + * @name eachOfSeries
21 + * @static
22 + * @memberOf module:Collections
23 + * @method
24 + * @see [async.eachOf]{@link module:Collections.eachOf}
25 + * @alias forEachOfSeries
26 + * @category Collection
27 + * @param {Array|Iterable|Object} coll - A collection to iterate over.
28 + * @param {AsyncFunction} iteratee - An async function to apply to each item in
29 + * `coll`.
30 + * Invoked with (item, key, callback).
31 + * @param {Function} [callback] - A callback which is called when all `iteratee`
32 + * functions have finished, or an error occurs. Invoked with (err).
33 + */
34 +exports.default = (0, _doLimit2.default)(_eachOfLimit2.default, 1);
35 +module.exports = exports['default'];
...\ No newline at end of file ...\ No newline at end of file
1 +'use strict';
2 +
3 +Object.defineProperty(exports, "__esModule", {
4 + value: true
5 +});
6 +
7 +var _eachLimit = require('./eachLimit');
8 +
9 +var _eachLimit2 = _interopRequireDefault(_eachLimit);
10 +
11 +var _doLimit = require('./internal/doLimit');
12 +
13 +var _doLimit2 = _interopRequireDefault(_doLimit);
14 +
15 +function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }
16 +
17 +/**
18 + * The same as [`each`]{@link module:Collections.each} but runs only a single async operation at a time.
19 + *
20 + * @name eachSeries
21 + * @static
22 + * @memberOf module:Collections
23 + * @method
24 + * @see [async.each]{@link module:Collections.each}
25 + * @alias forEachSeries
26 + * @category Collection
27 + * @param {Array|Iterable|Object} coll - A collection to iterate over.
28 + * @param {AsyncFunction} iteratee - An async function to apply to each
29 + * item in `coll`.
30 + * The array index is not passed to the iteratee.
31 + * If you need the index, use `eachOfSeries`.
32 + * Invoked with (item, callback).
33 + * @param {Function} [callback] - A callback which is called when all
34 + * `iteratee` functions have finished, or an error occurs. Invoked with (err).
35 + */
36 +exports.default = (0, _doLimit2.default)(_eachLimit2.default, 1);
37 +module.exports = exports['default'];
...\ No newline at end of file ...\ No newline at end of file
1 +'use strict';
2 +
3 +Object.defineProperty(exports, "__esModule", {
4 + value: true
5 +});
6 +exports.default = forever;
7 +
8 +var _noop = require('lodash/noop');
9 +
10 +var _noop2 = _interopRequireDefault(_noop);
11 +
12 +var _onlyOnce = require('./internal/onlyOnce');
13 +
14 +var _onlyOnce2 = _interopRequireDefault(_onlyOnce);
15 +
16 +var _ensureAsync = require('./ensureAsync');
17 +
18 +var _ensureAsync2 = _interopRequireDefault(_ensureAsync);
19 +
20 +var _wrapAsync = require('./internal/wrapAsync');
21 +
22 +var _wrapAsync2 = _interopRequireDefault(_wrapAsync);
23 +
24 +function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }
25 +
26 +/**
27 + * Calls the asynchronous function `fn` with a callback parameter that allows it
28 + * to call itself again, in series, indefinitely.
29 +
30 + * If an error is passed to the callback then `errback` is called with the
31 + * error, and execution stops, otherwise it will never be called.
32 + *
33 + * @name forever
34 + * @static
35 + * @memberOf module:ControlFlow
36 + * @method
37 + * @category Control Flow
38 + * @param {AsyncFunction} fn - an async function to call repeatedly.
39 + * Invoked with (next).
40 + * @param {Function} [errback] - when `fn` passes an error to it's callback,
41 + * this function will be called, and execution stops. Invoked with (err).
42 + * @example
43 + *
44 + * async.forever(
45 + * function(next) {
46 + * // next is suitable for passing to things that need a callback(err [, whatever]);
47 + * // it will result in this function being called again.
48 + * },
49 + * function(err) {
50 + * // if next is called with a value in its first parameter, it will appear
51 + * // in here as 'err', and execution will stop.
52 + * }
53 + * );
54 + */
55 +function forever(fn, errback) {
56 + var done = (0, _onlyOnce2.default)(errback || _noop2.default);
57 + var task = (0, _wrapAsync2.default)((0, _ensureAsync2.default)(fn));
58 +
59 + function next(err) {
60 + if (err) return done(err);
61 + task(next);
62 + }
63 + next();
64 +}
65 +module.exports = exports['default'];
...\ No newline at end of file ...\ No newline at end of file
1 +'use strict';
2 +
3 +Object.defineProperty(exports, "__esModule", {
4 + value: true
5 +});
6 +
7 +var _doLimit = require('./internal/doLimit');
8 +
9 +var _doLimit2 = _interopRequireDefault(_doLimit);
10 +
11 +var _groupByLimit = require('./groupByLimit');
12 +
13 +var _groupByLimit2 = _interopRequireDefault(_groupByLimit);
14 +
15 +function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }
16 +
17 +/**
18 + * Returns a new object, where each value corresponds to an array of items, from
19 + * `coll`, that returned the corresponding key. That is, the keys of the object
20 + * correspond to the values passed to the `iteratee` callback.
21 + *
22 + * Note: Since this function applies the `iteratee` to each item in parallel,
23 + * there is no guarantee that the `iteratee` functions will complete in order.
24 + * However, the values for each key in the `result` will be in the same order as
25 + * the original `coll`. For Objects, the values will roughly be in the order of
26 + * the original Objects' keys (but this can vary across JavaScript engines).
27 + *
28 + * @name groupBy
29 + * @static
30 + * @memberOf module:Collections
31 + * @method
32 + * @category Collection
33 + * @param {Array|Iterable|Object} coll - A collection to iterate over.
34 + * @param {AsyncFunction} iteratee - An async function to apply to each item in
35 + * `coll`.
36 + * The iteratee should complete with a `key` to group the value under.
37 + * Invoked with (value, callback).
38 + * @param {Function} [callback] - A callback which is called when all `iteratee`
39 + * functions have finished, or an error occurs. Result is an `Object` whoses
40 + * properties are arrays of values which returned the corresponding key.
41 + * @example
42 + *
43 + * async.groupBy(['userId1', 'userId2', 'userId3'], function(userId, callback) {
44 + * db.findById(userId, function(err, user) {
45 + * if (err) return callback(err);
46 + * return callback(null, user.age);
47 + * });
48 + * }, function(err, result) {
49 + * // result is object containing the userIds grouped by age
50 + * // e.g. { 30: ['userId1', 'userId3'], 42: ['userId2']};
51 + * });
52 + */
53 +exports.default = (0, _doLimit2.default)(_groupByLimit2.default, Infinity);
54 +module.exports = exports['default'];
...\ No newline at end of file ...\ No newline at end of file
1 +'use strict';
2 +
3 +Object.defineProperty(exports, "__esModule", {
4 + value: true
5 +});
6 +
7 +exports.default = function (coll, limit, iteratee, callback) {
8 + callback = callback || _noop2.default;
9 + var _iteratee = (0, _wrapAsync2.default)(iteratee);
10 + (0, _mapLimit2.default)(coll, limit, function (val, callback) {
11 + _iteratee(val, function (err, key) {
12 + if (err) return callback(err);
13 + return callback(null, { key: key, val: val });
14 + });
15 + }, function (err, mapResults) {
16 + var result = {};
17 + // from MDN, handle object having an `hasOwnProperty` prop
18 + var hasOwnProperty = Object.prototype.hasOwnProperty;
19 +
20 + for (var i = 0; i < mapResults.length; i++) {
21 + if (mapResults[i]) {
22 + var key = mapResults[i].key;
23 + var val = mapResults[i].val;
24 +
25 + if (hasOwnProperty.call(result, key)) {
26 + result[key].push(val);
27 + } else {
28 + result[key] = [val];
29 + }
30 + }
31 + }
32 +
33 + return callback(err, result);
34 + });
35 +};
36 +
37 +var _noop = require('lodash/noop');
38 +
39 +var _noop2 = _interopRequireDefault(_noop);
40 +
41 +var _mapLimit = require('./mapLimit');
42 +
43 +var _mapLimit2 = _interopRequireDefault(_mapLimit);
44 +
45 +var _wrapAsync = require('./internal/wrapAsync');
46 +
47 +var _wrapAsync2 = _interopRequireDefault(_wrapAsync);
48 +
49 +function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }
50 +
51 +;
52 +/**
53 + * The same as [`groupBy`]{@link module:Collections.groupBy} but runs a maximum of `limit` async operations at a time.
54 + *
55 + * @name groupByLimit
56 + * @static
57 + * @memberOf module:Collections
58 + * @method
59 + * @see [async.groupBy]{@link module:Collections.groupBy}
60 + * @category Collection
61 + * @param {Array|Iterable|Object} coll - A collection to iterate over.
62 + * @param {number} limit - The maximum number of async operations at a time.
63 + * @param {AsyncFunction} iteratee - An async function to apply to each item in
64 + * `coll`.
65 + * The iteratee should complete with a `key` to group the value under.
66 + * Invoked with (value, callback).
67 + * @param {Function} [callback] - A callback which is called when all `iteratee`
68 + * functions have finished, or an error occurs. Result is an `Object` whoses
69 + * properties are arrays of values which returned the corresponding key.
70 + */
71 +module.exports = exports['default'];
...\ No newline at end of file ...\ No newline at end of file
1 +'use strict';
2 +
3 +Object.defineProperty(exports, "__esModule", {
4 + value: true
5 +});
6 +
7 +var _doLimit = require('./internal/doLimit');
8 +
9 +var _doLimit2 = _interopRequireDefault(_doLimit);
10 +
11 +var _groupByLimit = require('./groupByLimit');
12 +
13 +var _groupByLimit2 = _interopRequireDefault(_groupByLimit);
14 +
15 +function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }
16 +
17 +/**
18 + * The same as [`groupBy`]{@link module:Collections.groupBy} but runs only a single async operation at a time.
19 + *
20 + * @name groupBySeries
21 + * @static
22 + * @memberOf module:Collections
23 + * @method
24 + * @see [async.groupBy]{@link module:Collections.groupBy}
25 + * @category Collection
26 + * @param {Array|Iterable|Object} coll - A collection to iterate over.
27 + * @param {number} limit - The maximum number of async operations at a time.
28 + * @param {AsyncFunction} iteratee - An async function to apply to each item in
29 + * `coll`.
30 + * The iteratee should complete with a `key` to group the value under.
31 + * Invoked with (value, callback).
32 + * @param {Function} [callback] - A callback which is called when all `iteratee`
33 + * functions have finished, or an error occurs. Result is an `Object` whoses
34 + * properties are arrays of values which returned the corresponding key.
35 + */
36 +exports.default = (0, _doLimit2.default)(_groupByLimit2.default, 1);
37 +module.exports = exports['default'];
...\ No newline at end of file ...\ No newline at end of file
1 +'use strict';
2 +
3 +Object.defineProperty(exports, "__esModule", {
4 + value: true
5 +});
6 +exports.wrapSync = exports.selectSeries = exports.selectLimit = exports.select = exports.foldr = exports.foldl = exports.inject = exports.forEachOfLimit = exports.forEachOfSeries = exports.forEachOf = exports.forEachLimit = exports.forEachSeries = exports.forEach = exports.findSeries = exports.findLimit = exports.find = exports.anySeries = exports.anyLimit = exports.any = exports.allSeries = exports.allLimit = exports.all = exports.whilst = exports.waterfall = exports.until = exports.unmemoize = exports.tryEach = exports.transform = exports.timesSeries = exports.timesLimit = exports.times = exports.timeout = exports.sortBy = exports.someSeries = exports.someLimit = exports.some = exports.setImmediate = exports.series = exports.seq = exports.retryable = exports.retry = exports.rejectSeries = exports.rejectLimit = exports.reject = exports.reflectAll = exports.reflect = exports.reduceRight = exports.reduce = exports.race = exports.queue = exports.priorityQueue = exports.parallelLimit = exports.parallel = exports.nextTick = exports.memoize = exports.mapValuesSeries = exports.mapValuesLimit = exports.mapValues = exports.mapSeries = exports.mapLimit = exports.map = exports.log = exports.groupBySeries = exports.groupByLimit = exports.groupBy = exports.forever = exports.filterSeries = exports.filterLimit = exports.filter = exports.everySeries = exports.everyLimit = exports.every = exports.ensureAsync = exports.eachSeries = exports.eachOfSeries = exports.eachOfLimit = exports.eachOf = exports.eachLimit = exports.each = exports.during = exports.doWhilst = exports.doUntil = exports.doDuring = exports.dir = exports.detectSeries = exports.detectLimit = exports.detect = exports.constant = exports.concatSeries = exports.concatLimit = exports.concat = exports.compose = exports.cargo = exports.autoInject = exports.auto = exports.asyncify = exports.applyEachSeries = exports.applyEach = exports.apply = undefined;
7 +
8 +var _apply = require('./apply');
9 +
10 +var _apply2 = _interopRequireDefault(_apply);
11 +
12 +var _applyEach = require('./applyEach');
13 +
14 +var _applyEach2 = _interopRequireDefault(_applyEach);
15 +
16 +var _applyEachSeries = require('./applyEachSeries');
17 +
18 +var _applyEachSeries2 = _interopRequireDefault(_applyEachSeries);
19 +
20 +var _asyncify = require('./asyncify');
21 +
22 +var _asyncify2 = _interopRequireDefault(_asyncify);
23 +
24 +var _auto = require('./auto');
25 +
26 +var _auto2 = _interopRequireDefault(_auto);
27 +
28 +var _autoInject = require('./autoInject');
29 +
30 +var _autoInject2 = _interopRequireDefault(_autoInject);
31 +
32 +var _cargo = require('./cargo');
33 +
34 +var _cargo2 = _interopRequireDefault(_cargo);
35 +
36 +var _compose = require('./compose');
37 +
38 +var _compose2 = _interopRequireDefault(_compose);
39 +
40 +var _concat = require('./concat');
41 +
42 +var _concat2 = _interopRequireDefault(_concat);
43 +
44 +var _concatLimit = require('./concatLimit');
45 +
46 +var _concatLimit2 = _interopRequireDefault(_concatLimit);
47 +
48 +var _concatSeries = require('./concatSeries');
49 +
50 +var _concatSeries2 = _interopRequireDefault(_concatSeries);
51 +
52 +var _constant = require('./constant');
53 +
54 +var _constant2 = _interopRequireDefault(_constant);
55 +
56 +var _detect = require('./detect');
57 +
58 +var _detect2 = _interopRequireDefault(_detect);
59 +
60 +var _detectLimit = require('./detectLimit');
61 +
62 +var _detectLimit2 = _interopRequireDefault(_detectLimit);
63 +
64 +var _detectSeries = require('./detectSeries');
65 +
66 +var _detectSeries2 = _interopRequireDefault(_detectSeries);
67 +
68 +var _dir = require('./dir');
69 +
70 +var _dir2 = _interopRequireDefault(_dir);
71 +
72 +var _doDuring = require('./doDuring');
73 +
74 +var _doDuring2 = _interopRequireDefault(_doDuring);
75 +
76 +var _doUntil = require('./doUntil');
77 +
78 +var _doUntil2 = _interopRequireDefault(_doUntil);
79 +
80 +var _doWhilst = require('./doWhilst');
81 +
82 +var _doWhilst2 = _interopRequireDefault(_doWhilst);
83 +
84 +var _during = require('./during');
85 +
86 +var _during2 = _interopRequireDefault(_during);
87 +
88 +var _each = require('./each');
89 +
90 +var _each2 = _interopRequireDefault(_each);
91 +
92 +var _eachLimit = require('./eachLimit');
93 +
94 +var _eachLimit2 = _interopRequireDefault(_eachLimit);
95 +
96 +var _eachOf = require('./eachOf');
97 +
98 +var _eachOf2 = _interopRequireDefault(_eachOf);
99 +
100 +var _eachOfLimit = require('./eachOfLimit');
101 +
102 +var _eachOfLimit2 = _interopRequireDefault(_eachOfLimit);
103 +
104 +var _eachOfSeries = require('./eachOfSeries');
105 +
106 +var _eachOfSeries2 = _interopRequireDefault(_eachOfSeries);
107 +
108 +var _eachSeries = require('./eachSeries');
109 +
110 +var _eachSeries2 = _interopRequireDefault(_eachSeries);
111 +
112 +var _ensureAsync = require('./ensureAsync');
113 +
114 +var _ensureAsync2 = _interopRequireDefault(_ensureAsync);
115 +
116 +var _every = require('./every');
117 +
118 +var _every2 = _interopRequireDefault(_every);
119 +
120 +var _everyLimit = require('./everyLimit');
121 +
122 +var _everyLimit2 = _interopRequireDefault(_everyLimit);
123 +
124 +var _everySeries = require('./everySeries');
125 +
126 +var _everySeries2 = _interopRequireDefault(_everySeries);
127 +
128 +var _filter = require('./filter');
129 +
130 +var _filter2 = _interopRequireDefault(_filter);
131 +
132 +var _filterLimit = require('./filterLimit');
133 +
134 +var _filterLimit2 = _interopRequireDefault(_filterLimit);
135 +
136 +var _filterSeries = require('./filterSeries');
137 +
138 +var _filterSeries2 = _interopRequireDefault(_filterSeries);
139 +
140 +var _forever = require('./forever');
141 +
142 +var _forever2 = _interopRequireDefault(_forever);
143 +
144 +var _groupBy = require('./groupBy');
145 +
146 +var _groupBy2 = _interopRequireDefault(_groupBy);
147 +
148 +var _groupByLimit = require('./groupByLimit');
149 +
150 +var _groupByLimit2 = _interopRequireDefault(_groupByLimit);
151 +
152 +var _groupBySeries = require('./groupBySeries');
153 +
154 +var _groupBySeries2 = _interopRequireDefault(_groupBySeries);
155 +
156 +var _log = require('./log');
157 +
158 +var _log2 = _interopRequireDefault(_log);
159 +
160 +var _map = require('./map');
161 +
162 +var _map2 = _interopRequireDefault(_map);
163 +
164 +var _mapLimit = require('./mapLimit');
165 +
166 +var _mapLimit2 = _interopRequireDefault(_mapLimit);
167 +
168 +var _mapSeries = require('./mapSeries');
169 +
170 +var _mapSeries2 = _interopRequireDefault(_mapSeries);
171 +
172 +var _mapValues = require('./mapValues');
173 +
174 +var _mapValues2 = _interopRequireDefault(_mapValues);
175 +
176 +var _mapValuesLimit = require('./mapValuesLimit');
177 +
178 +var _mapValuesLimit2 = _interopRequireDefault(_mapValuesLimit);
179 +
180 +var _mapValuesSeries = require('./mapValuesSeries');
181 +
182 +var _mapValuesSeries2 = _interopRequireDefault(_mapValuesSeries);
183 +
184 +var _memoize = require('./memoize');
185 +
186 +var _memoize2 = _interopRequireDefault(_memoize);
187 +
188 +var _nextTick = require('./nextTick');
189 +
190 +var _nextTick2 = _interopRequireDefault(_nextTick);
191 +
192 +var _parallel = require('./parallel');
193 +
194 +var _parallel2 = _interopRequireDefault(_parallel);
195 +
196 +var _parallelLimit = require('./parallelLimit');
197 +
198 +var _parallelLimit2 = _interopRequireDefault(_parallelLimit);
199 +
200 +var _priorityQueue = require('./priorityQueue');
201 +
202 +var _priorityQueue2 = _interopRequireDefault(_priorityQueue);
203 +
204 +var _queue = require('./queue');
205 +
206 +var _queue2 = _interopRequireDefault(_queue);
207 +
208 +var _race = require('./race');
209 +
210 +var _race2 = _interopRequireDefault(_race);
211 +
212 +var _reduce = require('./reduce');
213 +
214 +var _reduce2 = _interopRequireDefault(_reduce);
215 +
216 +var _reduceRight = require('./reduceRight');
217 +
218 +var _reduceRight2 = _interopRequireDefault(_reduceRight);
219 +
220 +var _reflect = require('./reflect');
221 +
222 +var _reflect2 = _interopRequireDefault(_reflect);
223 +
224 +var _reflectAll = require('./reflectAll');
225 +
226 +var _reflectAll2 = _interopRequireDefault(_reflectAll);
227 +
228 +var _reject = require('./reject');
229 +
230 +var _reject2 = _interopRequireDefault(_reject);
231 +
232 +var _rejectLimit = require('./rejectLimit');
233 +
234 +var _rejectLimit2 = _interopRequireDefault(_rejectLimit);
235 +
236 +var _rejectSeries = require('./rejectSeries');
237 +
238 +var _rejectSeries2 = _interopRequireDefault(_rejectSeries);
239 +
240 +var _retry = require('./retry');
241 +
242 +var _retry2 = _interopRequireDefault(_retry);
243 +
244 +var _retryable = require('./retryable');
245 +
246 +var _retryable2 = _interopRequireDefault(_retryable);
247 +
248 +var _seq = require('./seq');
249 +
250 +var _seq2 = _interopRequireDefault(_seq);
251 +
252 +var _series = require('./series');
253 +
254 +var _series2 = _interopRequireDefault(_series);
255 +
256 +var _setImmediate = require('./setImmediate');
257 +
258 +var _setImmediate2 = _interopRequireDefault(_setImmediate);
259 +
260 +var _some = require('./some');
261 +
262 +var _some2 = _interopRequireDefault(_some);
263 +
264 +var _someLimit = require('./someLimit');
265 +
266 +var _someLimit2 = _interopRequireDefault(_someLimit);
267 +
268 +var _someSeries = require('./someSeries');
269 +
270 +var _someSeries2 = _interopRequireDefault(_someSeries);
271 +
272 +var _sortBy = require('./sortBy');
273 +
274 +var _sortBy2 = _interopRequireDefault(_sortBy);
275 +
276 +var _timeout = require('./timeout');
277 +
278 +var _timeout2 = _interopRequireDefault(_timeout);
279 +
280 +var _times = require('./times');
281 +
282 +var _times2 = _interopRequireDefault(_times);
283 +
284 +var _timesLimit = require('./timesLimit');
285 +
286 +var _timesLimit2 = _interopRequireDefault(_timesLimit);
287 +
288 +var _timesSeries = require('./timesSeries');
289 +
290 +var _timesSeries2 = _interopRequireDefault(_timesSeries);
291 +
292 +var _transform = require('./transform');
293 +
294 +var _transform2 = _interopRequireDefault(_transform);
295 +
296 +var _tryEach = require('./tryEach');
297 +
298 +var _tryEach2 = _interopRequireDefault(_tryEach);
299 +
300 +var _unmemoize = require('./unmemoize');
301 +
302 +var _unmemoize2 = _interopRequireDefault(_unmemoize);
303 +
304 +var _until = require('./until');
305 +
306 +var _until2 = _interopRequireDefault(_until);
307 +
308 +var _waterfall = require('./waterfall');
309 +
310 +var _waterfall2 = _interopRequireDefault(_waterfall);
311 +
312 +var _whilst = require('./whilst');
313 +
314 +var _whilst2 = _interopRequireDefault(_whilst);
315 +
316 +function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }
317 +
318 +exports.default = {
319 + apply: _apply2.default,
320 + applyEach: _applyEach2.default,
321 + applyEachSeries: _applyEachSeries2.default,
322 + asyncify: _asyncify2.default,
323 + auto: _auto2.default,
324 + autoInject: _autoInject2.default,
325 + cargo: _cargo2.default,
326 + compose: _compose2.default,
327 + concat: _concat2.default,
328 + concatLimit: _concatLimit2.default,
329 + concatSeries: _concatSeries2.default,
330 + constant: _constant2.default,
331 + detect: _detect2.default,
332 + detectLimit: _detectLimit2.default,
333 + detectSeries: _detectSeries2.default,
334 + dir: _dir2.default,
335 + doDuring: _doDuring2.default,
336 + doUntil: _doUntil2.default,
337 + doWhilst: _doWhilst2.default,
338 + during: _during2.default,
339 + each: _each2.default,
340 + eachLimit: _eachLimit2.default,
341 + eachOf: _eachOf2.default,
342 + eachOfLimit: _eachOfLimit2.default,
343 + eachOfSeries: _eachOfSeries2.default,
344 + eachSeries: _eachSeries2.default,
345 + ensureAsync: _ensureAsync2.default,
346 + every: _every2.default,
347 + everyLimit: _everyLimit2.default,
348 + everySeries: _everySeries2.default,
349 + filter: _filter2.default,
350 + filterLimit: _filterLimit2.default,
351 + filterSeries: _filterSeries2.default,
352 + forever: _forever2.default,
353 + groupBy: _groupBy2.default,
354 + groupByLimit: _groupByLimit2.default,
355 + groupBySeries: _groupBySeries2.default,
356 + log: _log2.default,
357 + map: _map2.default,
358 + mapLimit: _mapLimit2.default,
359 + mapSeries: _mapSeries2.default,
360 + mapValues: _mapValues2.default,
361 + mapValuesLimit: _mapValuesLimit2.default,
362 + mapValuesSeries: _mapValuesSeries2.default,
363 + memoize: _memoize2.default,
364 + nextTick: _nextTick2.default,
365 + parallel: _parallel2.default,
366 + parallelLimit: _parallelLimit2.default,
367 + priorityQueue: _priorityQueue2.default,
368 + queue: _queue2.default,
369 + race: _race2.default,
370 + reduce: _reduce2.default,
371 + reduceRight: _reduceRight2.default,
372 + reflect: _reflect2.default,
373 + reflectAll: _reflectAll2.default,
374 + reject: _reject2.default,
375 + rejectLimit: _rejectLimit2.default,
376 + rejectSeries: _rejectSeries2.default,
377 + retry: _retry2.default,
378 + retryable: _retryable2.default,
379 + seq: _seq2.default,
380 + series: _series2.default,
381 + setImmediate: _setImmediate2.default,
382 + some: _some2.default,
383 + someLimit: _someLimit2.default,
384 + someSeries: _someSeries2.default,
385 + sortBy: _sortBy2.default,
386 + timeout: _timeout2.default,
387 + times: _times2.default,
388 + timesLimit: _timesLimit2.default,
389 + timesSeries: _timesSeries2.default,
390 + transform: _transform2.default,
391 + tryEach: _tryEach2.default,
392 + unmemoize: _unmemoize2.default,
393 + until: _until2.default,
394 + waterfall: _waterfall2.default,
395 + whilst: _whilst2.default,
396 +
397 + // aliases
398 + all: _every2.default,
399 + allLimit: _everyLimit2.default,
400 + allSeries: _everySeries2.default,
401 + any: _some2.default,
402 + anyLimit: _someLimit2.default,
403 + anySeries: _someSeries2.default,
404 + find: _detect2.default,
405 + findLimit: _detectLimit2.default,
406 + findSeries: _detectSeries2.default,
407 + forEach: _each2.default,
408 + forEachSeries: _eachSeries2.default,
409 + forEachLimit: _eachLimit2.default,
410 + forEachOf: _eachOf2.default,
411 + forEachOfSeries: _eachOfSeries2.default,
412 + forEachOfLimit: _eachOfLimit2.default,
413 + inject: _reduce2.default,
414 + foldl: _reduce2.default,
415 + foldr: _reduceRight2.default,
416 + select: _filter2.default,
417 + selectLimit: _filterLimit2.default,
418 + selectSeries: _filterSeries2.default,
419 + wrapSync: _asyncify2.default
420 +}; /**
421 + * An "async function" in the context of Async is an asynchronous function with
422 + * a variable number of parameters, with the final parameter being a callback.
423 + * (`function (arg1, arg2, ..., callback) {}`)
424 + * The final callback is of the form `callback(err, results...)`, which must be
425 + * called once the function is completed. The callback should be called with a
426 + * Error as its first argument to signal that an error occurred.
427 + * Otherwise, if no error occurred, it should be called with `null` as the first
428 + * argument, and any additional `result` arguments that may apply, to signal
429 + * successful completion.
430 + * The callback must be called exactly once, ideally on a later tick of the
431 + * JavaScript event loop.
432 + *
433 + * This type of function is also referred to as a "Node-style async function",
434 + * or a "continuation passing-style function" (CPS). Most of the methods of this
435 + * library are themselves CPS/Node-style async functions, or functions that
436 + * return CPS/Node-style async functions.
437 + *
438 + * Wherever we accept a Node-style async function, we also directly accept an
439 + * [ES2017 `async` function]{@link https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Statements/async_function}.
440 + * In this case, the `async` function will not be passed a final callback
441 + * argument, and any thrown error will be used as the `err` argument of the
442 + * implicit callback, and the return value will be used as the `result` value.
443 + * (i.e. a `rejected` of the returned Promise becomes the `err` callback
444 + * argument, and a `resolved` value becomes the `result`.)
445 + *
446 + * Note, due to JavaScript limitations, we can only detect native `async`
447 + * functions and not transpilied implementations.
448 + * Your environment must have `async`/`await` support for this to work.
449 + * (e.g. Node > v7.6, or a recent version of a modern browser).
450 + * If you are using `async` functions through a transpiler (e.g. Babel), you
451 + * must still wrap the function with [asyncify]{@link module:Utils.asyncify},
452 + * because the `async function` will be compiled to an ordinary function that
453 + * returns a promise.
454 + *
455 + * @typedef {Function} AsyncFunction
456 + * @static
457 + */
458 +
459 +/**
460 + * Async is a utility module which provides straight-forward, powerful functions
461 + * for working with asynchronous JavaScript. Although originally designed for
462 + * use with [Node.js](http://nodejs.org) and installable via
463 + * `npm install --save async`, it can also be used directly in the browser.
464 + * @module async
465 + * @see AsyncFunction
466 + */
467 +
468 +/**
469 + * A collection of `async` functions for manipulating collections, such as
470 + * arrays and objects.
471 + * @module Collections
472 + */
473 +
474 +/**
475 + * A collection of `async` functions for controlling the flow through a script.
476 + * @module ControlFlow
477 + */
478 +
479 +/**
480 + * A collection of `async` utility functions.
481 + * @module Utils
482 + */
483 +
484 +exports.apply = _apply2.default;
485 +exports.applyEach = _applyEach2.default;
486 +exports.applyEachSeries = _applyEachSeries2.default;
487 +exports.asyncify = _asyncify2.default;
488 +exports.auto = _auto2.default;
489 +exports.autoInject = _autoInject2.default;
490 +exports.cargo = _cargo2.default;
491 +exports.compose = _compose2.default;
492 +exports.concat = _concat2.default;
493 +exports.concatLimit = _concatLimit2.default;
494 +exports.concatSeries = _concatSeries2.default;
495 +exports.constant = _constant2.default;
496 +exports.detect = _detect2.default;
497 +exports.detectLimit = _detectLimit2.default;
498 +exports.detectSeries = _detectSeries2.default;
499 +exports.dir = _dir2.default;
500 +exports.doDuring = _doDuring2.default;
501 +exports.doUntil = _doUntil2.default;
502 +exports.doWhilst = _doWhilst2.default;
503 +exports.during = _during2.default;
504 +exports.each = _each2.default;
505 +exports.eachLimit = _eachLimit2.default;
506 +exports.eachOf = _eachOf2.default;
507 +exports.eachOfLimit = _eachOfLimit2.default;
508 +exports.eachOfSeries = _eachOfSeries2.default;
509 +exports.eachSeries = _eachSeries2.default;
510 +exports.ensureAsync = _ensureAsync2.default;
511 +exports.every = _every2.default;
512 +exports.everyLimit = _everyLimit2.default;
513 +exports.everySeries = _everySeries2.default;
514 +exports.filter = _filter2.default;
515 +exports.filterLimit = _filterLimit2.default;
516 +exports.filterSeries = _filterSeries2.default;
517 +exports.forever = _forever2.default;
518 +exports.groupBy = _groupBy2.default;
519 +exports.groupByLimit = _groupByLimit2.default;
520 +exports.groupBySeries = _groupBySeries2.default;
521 +exports.log = _log2.default;
522 +exports.map = _map2.default;
523 +exports.mapLimit = _mapLimit2.default;
524 +exports.mapSeries = _mapSeries2.default;
525 +exports.mapValues = _mapValues2.default;
526 +exports.mapValuesLimit = _mapValuesLimit2.default;
527 +exports.mapValuesSeries = _mapValuesSeries2.default;
528 +exports.memoize = _memoize2.default;
529 +exports.nextTick = _nextTick2.default;
530 +exports.parallel = _parallel2.default;
531 +exports.parallelLimit = _parallelLimit2.default;
532 +exports.priorityQueue = _priorityQueue2.default;
533 +exports.queue = _queue2.default;
534 +exports.race = _race2.default;
535 +exports.reduce = _reduce2.default;
536 +exports.reduceRight = _reduceRight2.default;
537 +exports.reflect = _reflect2.default;
538 +exports.reflectAll = _reflectAll2.default;
539 +exports.reject = _reject2.default;
540 +exports.rejectLimit = _rejectLimit2.default;
541 +exports.rejectSeries = _rejectSeries2.default;
542 +exports.retry = _retry2.default;
543 +exports.retryable = _retryable2.default;
544 +exports.seq = _seq2.default;
545 +exports.series = _series2.default;
546 +exports.setImmediate = _setImmediate2.default;
547 +exports.some = _some2.default;
548 +exports.someLimit = _someLimit2.default;
549 +exports.someSeries = _someSeries2.default;
550 +exports.sortBy = _sortBy2.default;
551 +exports.timeout = _timeout2.default;
552 +exports.times = _times2.default;
553 +exports.timesLimit = _timesLimit2.default;
554 +exports.timesSeries = _timesSeries2.default;
555 +exports.transform = _transform2.default;
556 +exports.tryEach = _tryEach2.default;
557 +exports.unmemoize = _unmemoize2.default;
558 +exports.until = _until2.default;
559 +exports.waterfall = _waterfall2.default;
560 +exports.whilst = _whilst2.default;
561 +exports.all = _every2.default;
562 +exports.allLimit = _everyLimit2.default;
563 +exports.allSeries = _everySeries2.default;
564 +exports.any = _some2.default;
565 +exports.anyLimit = _someLimit2.default;
566 +exports.anySeries = _someSeries2.default;
567 +exports.find = _detect2.default;
568 +exports.findLimit = _detectLimit2.default;
569 +exports.findSeries = _detectSeries2.default;
570 +exports.forEach = _each2.default;
571 +exports.forEachSeries = _eachSeries2.default;
572 +exports.forEachLimit = _eachLimit2.default;
573 +exports.forEachOf = _eachOf2.default;
574 +exports.forEachOfSeries = _eachOfSeries2.default;
575 +exports.forEachOfLimit = _eachOfLimit2.default;
576 +exports.inject = _reduce2.default;
577 +exports.foldl = _reduce2.default;
578 +exports.foldr = _reduceRight2.default;
579 +exports.select = _filter2.default;
580 +exports.selectLimit = _filterLimit2.default;
581 +exports.selectSeries = _filterSeries2.default;
582 +exports.wrapSync = _asyncify2.default;
...\ No newline at end of file ...\ No newline at end of file
1 +'use strict';
2 +
3 +Object.defineProperty(exports, "__esModule", {
4 + value: true
5 +});
6 +exports.default = reduce;
7 +
8 +var _eachOfSeries = require('./eachOfSeries');
9 +
10 +var _eachOfSeries2 = _interopRequireDefault(_eachOfSeries);
11 +
12 +var _noop = require('lodash/noop');
13 +
14 +var _noop2 = _interopRequireDefault(_noop);
15 +
16 +var _once = require('./internal/once');
17 +
18 +var _once2 = _interopRequireDefault(_once);
19 +
20 +var _wrapAsync = require('./internal/wrapAsync');
21 +
22 +var _wrapAsync2 = _interopRequireDefault(_wrapAsync);
23 +
24 +function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }
25 +
26 +/**
27 + * Reduces `coll` into a single value using an async `iteratee` to return each
28 + * successive step. `memo` is the initial state of the reduction. This function
29 + * only operates in series.
30 + *
31 + * For performance reasons, it may make sense to split a call to this function
32 + * into a parallel map, and then use the normal `Array.prototype.reduce` on the
33 + * results. This function is for situations where each step in the reduction
34 + * needs to be async; if you can get the data before reducing it, then it's
35 + * probably a good idea to do so.
36 + *
37 + * @name reduce
38 + * @static
39 + * @memberOf module:Collections
40 + * @method
41 + * @alias inject
42 + * @alias foldl
43 + * @category Collection
44 + * @param {Array|Iterable|Object} coll - A collection to iterate over.
45 + * @param {*} memo - The initial state of the reduction.
46 + * @param {AsyncFunction} iteratee - A function applied to each item in the
47 + * array to produce the next step in the reduction.
48 + * The `iteratee` should complete with the next state of the reduction.
49 + * If the iteratee complete with an error, the reduction is stopped and the
50 + * main `callback` is immediately called with the error.
51 + * Invoked with (memo, item, callback).
52 + * @param {Function} [callback] - A callback which is called after all the
53 + * `iteratee` functions have finished. Result is the reduced value. Invoked with
54 + * (err, result).
55 + * @example
56 + *
57 + * async.reduce([1,2,3], 0, function(memo, item, callback) {
58 + * // pointless async:
59 + * process.nextTick(function() {
60 + * callback(null, memo + item)
61 + * });
62 + * }, function(err, result) {
63 + * // result is now equal to the last value of memo, which is 6
64 + * });
65 + */
66 +function reduce(coll, memo, iteratee, callback) {
67 + callback = (0, _once2.default)(callback || _noop2.default);
68 + var _iteratee = (0, _wrapAsync2.default)(iteratee);
69 + (0, _eachOfSeries2.default)(coll, function (x, i, callback) {
70 + _iteratee(memo, x, function (err, v) {
71 + memo = v;
72 + callback(err);
73 + });
74 + }, function (err) {
75 + callback(err, memo);
76 + });
77 +}
78 +module.exports = exports['default'];
...\ No newline at end of file ...\ No newline at end of file
1 +"use strict";
2 +
3 +Object.defineProperty(exports, "__esModule", {
4 + value: true
5 +});
6 +exports.default = DLL;
7 +// Simple doubly linked list (https://en.wikipedia.org/wiki/Doubly_linked_list) implementation
8 +// used for queues. This implementation assumes that the node provided by the user can be modified
9 +// to adjust the next and last properties. We implement only the minimal functionality
10 +// for queue support.
11 +function DLL() {
12 + this.head = this.tail = null;
13 + this.length = 0;
14 +}
15 +
16 +function setInitial(dll, node) {
17 + dll.length = 1;
18 + dll.head = dll.tail = node;
19 +}
20 +
21 +DLL.prototype.removeLink = function (node) {
22 + if (node.prev) node.prev.next = node.next;else this.head = node.next;
23 + if (node.next) node.next.prev = node.prev;else this.tail = node.prev;
24 +
25 + node.prev = node.next = null;
26 + this.length -= 1;
27 + return node;
28 +};
29 +
30 +DLL.prototype.empty = function () {
31 + while (this.head) this.shift();
32 + return this;
33 +};
34 +
35 +DLL.prototype.insertAfter = function (node, newNode) {
36 + newNode.prev = node;
37 + newNode.next = node.next;
38 + if (node.next) node.next.prev = newNode;else this.tail = newNode;
39 + node.next = newNode;
40 + this.length += 1;
41 +};
42 +
43 +DLL.prototype.insertBefore = function (node, newNode) {
44 + newNode.prev = node.prev;
45 + newNode.next = node;
46 + if (node.prev) node.prev.next = newNode;else this.head = newNode;
47 + node.prev = newNode;
48 + this.length += 1;
49 +};
50 +
51 +DLL.prototype.unshift = function (node) {
52 + if (this.head) this.insertBefore(this.head, node);else setInitial(this, node);
53 +};
54 +
55 +DLL.prototype.push = function (node) {
56 + if (this.tail) this.insertAfter(this.tail, node);else setInitial(this, node);
57 +};
58 +
59 +DLL.prototype.shift = function () {
60 + return this.head && this.removeLink(this.head);
61 +};
62 +
63 +DLL.prototype.pop = function () {
64 + return this.tail && this.removeLink(this.tail);
65 +};
66 +
67 +DLL.prototype.toArray = function () {
68 + var arr = Array(this.length);
69 + var curr = this.head;
70 + for (var idx = 0; idx < this.length; idx++) {
71 + arr[idx] = curr.data;
72 + curr = curr.next;
73 + }
74 + return arr;
75 +};
76 +
77 +DLL.prototype.remove = function (testFn) {
78 + var curr = this.head;
79 + while (!!curr) {
80 + var next = curr.next;
81 + if (testFn(curr)) {
82 + this.removeLink(curr);
83 + }
84 + curr = next;
85 + }
86 + return this;
87 +};
88 +module.exports = exports["default"];
...\ No newline at end of file ...\ No newline at end of file
1 +'use strict';
2 +
3 +Object.defineProperty(exports, "__esModule", {
4 + value: true
5 +});
6 +exports.default = applyEach;
7 +
8 +var _slice = require('./slice');
9 +
10 +var _slice2 = _interopRequireDefault(_slice);
11 +
12 +var _initialParams = require('./initialParams');
13 +
14 +var _initialParams2 = _interopRequireDefault(_initialParams);
15 +
16 +var _wrapAsync = require('./wrapAsync');
17 +
18 +var _wrapAsync2 = _interopRequireDefault(_wrapAsync);
19 +
20 +function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }
21 +
22 +function applyEach(eachfn) {
23 + return function (fns /*, ...args*/) {
24 + var args = (0, _slice2.default)(arguments, 1);
25 + var go = (0, _initialParams2.default)(function (args, callback) {
26 + var that = this;
27 + return eachfn(fns, function (fn, cb) {
28 + (0, _wrapAsync2.default)(fn).apply(that, args.concat(cb));
29 + }, callback);
30 + });
31 + if (args.length) {
32 + return go.apply(this, args);
33 + } else {
34 + return go;
35 + }
36 + };
37 +}
38 +module.exports = exports['default'];
...\ No newline at end of file ...\ No newline at end of file
1 +"use strict";
2 +
3 +Object.defineProperty(exports, "__esModule", {
4 + value: true
5 +});
6 +// A temporary value used to identify if the loop should be broken.
7 +// See #1064, #1293
8 +exports.default = {};
9 +module.exports = exports["default"];
...\ No newline at end of file ...\ No newline at end of file
1 +'use strict';
2 +
3 +Object.defineProperty(exports, "__esModule", {
4 + value: true
5 +});
6 +exports.default = consoleFunc;
7 +
8 +var _arrayEach = require('lodash/_arrayEach');
9 +
10 +var _arrayEach2 = _interopRequireDefault(_arrayEach);
11 +
12 +var _slice = require('./slice');
13 +
14 +var _slice2 = _interopRequireDefault(_slice);
15 +
16 +var _wrapAsync = require('./wrapAsync');
17 +
18 +var _wrapAsync2 = _interopRequireDefault(_wrapAsync);
19 +
20 +function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }
21 +
22 +function consoleFunc(name) {
23 + return function (fn /*, ...args*/) {
24 + var args = (0, _slice2.default)(arguments, 1);
25 + args.push(function (err /*, ...args*/) {
26 + var args = (0, _slice2.default)(arguments, 1);
27 + if (typeof console === 'object') {
28 + if (err) {
29 + if (console.error) {
30 + console.error(err);
31 + }
32 + } else if (console[name]) {
33 + (0, _arrayEach2.default)(args, function (x) {
34 + console[name](x);
35 + });
36 + }
37 + }
38 + });
39 + (0, _wrapAsync2.default)(fn).apply(null, args);
40 + };
41 +}
42 +module.exports = exports['default'];
...\ No newline at end of file ...\ No newline at end of file
1 +'use strict';
2 +
3 +Object.defineProperty(exports, "__esModule", {
4 + value: true
5 +});
6 +exports.default = _createTester;
7 +
8 +var _noop = require('lodash/noop');
9 +
10 +var _noop2 = _interopRequireDefault(_noop);
11 +
12 +var _breakLoop = require('./breakLoop');
13 +
14 +var _breakLoop2 = _interopRequireDefault(_breakLoop);
15 +
16 +function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }
17 +
18 +function _createTester(check, getResult) {
19 + return function (eachfn, arr, iteratee, cb) {
20 + cb = cb || _noop2.default;
21 + var testPassed = false;
22 + var testResult;
23 + eachfn(arr, function (value, _, callback) {
24 + iteratee(value, function (err, result) {
25 + if (err) {
26 + callback(err);
27 + } else if (check(result) && !testResult) {
28 + testPassed = true;
29 + testResult = getResult(true, value);
30 + callback(null, _breakLoop2.default);
31 + } else {
32 + callback();
33 + }
34 + });
35 + }, function (err) {
36 + if (err) {
37 + cb(err);
38 + } else {
39 + cb(null, testPassed ? testResult : getResult(false));
40 + }
41 + });
42 + };
43 +}
44 +module.exports = exports['default'];
...\ No newline at end of file ...\ No newline at end of file
1 +"use strict";
2 +
3 +Object.defineProperty(exports, "__esModule", {
4 + value: true
5 +});
6 +exports.default = doLimit;
7 +function doLimit(fn, limit) {
8 + return function (iterable, iteratee, callback) {
9 + return fn(iterable, limit, iteratee, callback);
10 + };
11 +}
12 +module.exports = exports["default"];
...\ No newline at end of file ...\ No newline at end of file
1 +'use strict';
2 +
3 +Object.defineProperty(exports, "__esModule", {
4 + value: true
5 +});
6 +exports.default = doParallel;
7 +
8 +var _eachOf = require('../eachOf');
9 +
10 +var _eachOf2 = _interopRequireDefault(_eachOf);
11 +
12 +var _wrapAsync = require('./wrapAsync');
13 +
14 +var _wrapAsync2 = _interopRequireDefault(_wrapAsync);
15 +
16 +function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }
17 +
18 +function doParallel(fn) {
19 + return function (obj, iteratee, callback) {
20 + return fn(_eachOf2.default, obj, (0, _wrapAsync2.default)(iteratee), callback);
21 + };
22 +}
23 +module.exports = exports['default'];
...\ No newline at end of file ...\ No newline at end of file
1 +'use strict';
2 +
3 +Object.defineProperty(exports, "__esModule", {
4 + value: true
5 +});
6 +exports.default = doParallelLimit;
7 +
8 +var _eachOfLimit = require('./eachOfLimit');
9 +
10 +var _eachOfLimit2 = _interopRequireDefault(_eachOfLimit);
11 +
12 +var _wrapAsync = require('./wrapAsync');
13 +
14 +var _wrapAsync2 = _interopRequireDefault(_wrapAsync);
15 +
16 +function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }
17 +
18 +function doParallelLimit(fn) {
19 + return function (obj, limit, iteratee, callback) {
20 + return fn((0, _eachOfLimit2.default)(limit), obj, (0, _wrapAsync2.default)(iteratee), callback);
21 + };
22 +}
23 +module.exports = exports['default'];
...\ No newline at end of file ...\ No newline at end of file
1 +'use strict';
2 +
3 +Object.defineProperty(exports, "__esModule", {
4 + value: true
5 +});
6 +exports.default = _eachOfLimit;
7 +
8 +var _noop = require('lodash/noop');
9 +
10 +var _noop2 = _interopRequireDefault(_noop);
11 +
12 +var _once = require('./once');
13 +
14 +var _once2 = _interopRequireDefault(_once);
15 +
16 +var _iterator = require('./iterator');
17 +
18 +var _iterator2 = _interopRequireDefault(_iterator);
19 +
20 +var _onlyOnce = require('./onlyOnce');
21 +
22 +var _onlyOnce2 = _interopRequireDefault(_onlyOnce);
23 +
24 +var _breakLoop = require('./breakLoop');
25 +
26 +var _breakLoop2 = _interopRequireDefault(_breakLoop);
27 +
28 +function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }
29 +
30 +function _eachOfLimit(limit) {
31 + return function (obj, iteratee, callback) {
32 + callback = (0, _once2.default)(callback || _noop2.default);
33 + if (limit <= 0 || !obj) {
34 + return callback(null);
35 + }
36 + var nextElem = (0, _iterator2.default)(obj);
37 + var done = false;
38 + var running = 0;
39 + var looping = false;
40 +
41 + function iterateeCallback(err, value) {
42 + running -= 1;
43 + if (err) {
44 + done = true;
45 + callback(err);
46 + } else if (value === _breakLoop2.default || done && running <= 0) {
47 + done = true;
48 + return callback(null);
49 + } else if (!looping) {
50 + replenish();
51 + }
52 + }
53 +
54 + function replenish() {
55 + looping = true;
56 + while (running < limit && !done) {
57 + var elem = nextElem();
58 + if (elem === null) {
59 + done = true;
60 + if (running <= 0) {
61 + callback(null);
62 + }
63 + return;
64 + }
65 + running += 1;
66 + iteratee(elem.value, elem.key, (0, _onlyOnce2.default)(iterateeCallback));
67 + }
68 + looping = false;
69 + }
70 +
71 + replenish();
72 + };
73 +}
74 +module.exports = exports['default'];
...\ No newline at end of file ...\ No newline at end of file
1 +'use strict';
2 +
3 +Object.defineProperty(exports, "__esModule", {
4 + value: true
5 +});
6 +exports.default = _filter;
7 +
8 +var _arrayMap = require('lodash/_arrayMap');
9 +
10 +var _arrayMap2 = _interopRequireDefault(_arrayMap);
11 +
12 +var _isArrayLike = require('lodash/isArrayLike');
13 +
14 +var _isArrayLike2 = _interopRequireDefault(_isArrayLike);
15 +
16 +var _baseProperty = require('lodash/_baseProperty');
17 +
18 +var _baseProperty2 = _interopRequireDefault(_baseProperty);
19 +
20 +var _noop = require('lodash/noop');
21 +
22 +var _noop2 = _interopRequireDefault(_noop);
23 +
24 +var _wrapAsync = require('./wrapAsync');
25 +
26 +var _wrapAsync2 = _interopRequireDefault(_wrapAsync);
27 +
28 +function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }
29 +
30 +function filterArray(eachfn, arr, iteratee, callback) {
31 + var truthValues = new Array(arr.length);
32 + eachfn(arr, function (x, index, callback) {
33 + iteratee(x, function (err, v) {
34 + truthValues[index] = !!v;
35 + callback(err);
36 + });
37 + }, function (err) {
38 + if (err) return callback(err);
39 + var results = [];
40 + for (var i = 0; i < arr.length; i++) {
41 + if (truthValues[i]) results.push(arr[i]);
42 + }
43 + callback(null, results);
44 + });
45 +}
46 +
47 +function filterGeneric(eachfn, coll, iteratee, callback) {
48 + var results = [];
49 + eachfn(coll, function (x, index, callback) {
50 + iteratee(x, function (err, v) {
51 + if (err) {
52 + callback(err);
53 + } else {
54 + if (v) {
55 + results.push({ index: index, value: x });
56 + }
57 + callback();
58 + }
59 + });
60 + }, function (err) {
61 + if (err) {
62 + callback(err);
63 + } else {
64 + callback(null, (0, _arrayMap2.default)(results.sort(function (a, b) {
65 + return a.index - b.index;
66 + }), (0, _baseProperty2.default)('value')));
67 + }
68 + });
69 +}
70 +
71 +function _filter(eachfn, coll, iteratee, callback) {
72 + var filter = (0, _isArrayLike2.default)(coll) ? filterArray : filterGeneric;
73 + filter(eachfn, coll, (0, _wrapAsync2.default)(iteratee), callback || _noop2.default);
74 +}
75 +module.exports = exports['default'];
...\ No newline at end of file ...\ No newline at end of file
1 +"use strict";
2 +
3 +Object.defineProperty(exports, "__esModule", {
4 + value: true
5 +});
6 +exports.default = _findGetResult;
7 +function _findGetResult(v, x) {
8 + return x;
9 +}
10 +module.exports = exports["default"];
...\ No newline at end of file ...\ No newline at end of file
1 +'use strict';
2 +
3 +Object.defineProperty(exports, "__esModule", {
4 + value: true
5 +});
6 +
7 +exports.default = function (coll) {
8 + return iteratorSymbol && coll[iteratorSymbol] && coll[iteratorSymbol]();
9 +};
10 +
11 +var iteratorSymbol = typeof Symbol === 'function' && Symbol.iterator;
12 +
13 +module.exports = exports['default'];
...\ No newline at end of file ...\ No newline at end of file
1 +'use strict';
2 +
3 +Object.defineProperty(exports, "__esModule", {
4 + value: true
5 +});
6 +
7 +exports.default = function (fn) {
8 + return function () /*...args, callback*/{
9 + var args = (0, _slice2.default)(arguments);
10 + var callback = args.pop();
11 + fn.call(this, args, callback);
12 + };
13 +};
14 +
15 +var _slice = require('./slice');
16 +
17 +var _slice2 = _interopRequireDefault(_slice);
18 +
19 +function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }
20 +
21 +module.exports = exports['default'];
...\ No newline at end of file ...\ No newline at end of file
1 +'use strict';
2 +
3 +Object.defineProperty(exports, "__esModule", {
4 + value: true
5 +});
6 +exports.default = iterator;
7 +
8 +var _isArrayLike = require('lodash/isArrayLike');
9 +
10 +var _isArrayLike2 = _interopRequireDefault(_isArrayLike);
11 +
12 +var _getIterator = require('./getIterator');
13 +
14 +var _getIterator2 = _interopRequireDefault(_getIterator);
15 +
16 +var _keys = require('lodash/keys');
17 +
18 +var _keys2 = _interopRequireDefault(_keys);
19 +
20 +function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }
21 +
22 +function createArrayIterator(coll) {
23 + var i = -1;
24 + var len = coll.length;
25 + return function next() {
26 + return ++i < len ? { value: coll[i], key: i } : null;
27 + };
28 +}
29 +
30 +function createES2015Iterator(iterator) {
31 + var i = -1;
32 + return function next() {
33 + var item = iterator.next();
34 + if (item.done) return null;
35 + i++;
36 + return { value: item.value, key: i };
37 + };
38 +}
39 +
40 +function createObjectIterator(obj) {
41 + var okeys = (0, _keys2.default)(obj);
42 + var i = -1;
43 + var len = okeys.length;
44 + return function next() {
45 + var key = okeys[++i];
46 + return i < len ? { value: obj[key], key: key } : null;
47 + };
48 +}
49 +
50 +function iterator(coll) {
51 + if ((0, _isArrayLike2.default)(coll)) {
52 + return createArrayIterator(coll);
53 + }
54 +
55 + var iterator = (0, _getIterator2.default)(coll);
56 + return iterator ? createES2015Iterator(iterator) : createObjectIterator(coll);
57 +}
58 +module.exports = exports['default'];
...\ No newline at end of file ...\ No newline at end of file
1 +'use strict';
2 +
3 +Object.defineProperty(exports, "__esModule", {
4 + value: true
5 +});
6 +exports.default = _asyncMap;
7 +
8 +var _noop = require('lodash/noop');
9 +
10 +var _noop2 = _interopRequireDefault(_noop);
11 +
12 +var _wrapAsync = require('./wrapAsync');
13 +
14 +var _wrapAsync2 = _interopRequireDefault(_wrapAsync);
15 +
16 +function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }
17 +
18 +function _asyncMap(eachfn, arr, iteratee, callback) {
19 + callback = callback || _noop2.default;
20 + arr = arr || [];
21 + var results = [];
22 + var counter = 0;
23 + var _iteratee = (0, _wrapAsync2.default)(iteratee);
24 +
25 + eachfn(arr, function (value, _, callback) {
26 + var index = counter++;
27 + _iteratee(value, function (err, v) {
28 + results[index] = v;
29 + callback(err);
30 + });
31 + }, function (err) {
32 + callback(err, results);
33 + });
34 +}
35 +module.exports = exports['default'];
...\ No newline at end of file ...\ No newline at end of file
1 +"use strict";
2 +
3 +Object.defineProperty(exports, "__esModule", {
4 + value: true
5 +});
6 +exports.default = notId;
7 +function notId(v) {
8 + return !v;
9 +}
10 +module.exports = exports["default"];
...\ No newline at end of file ...\ No newline at end of file
1 +"use strict";
2 +
3 +Object.defineProperty(exports, "__esModule", {
4 + value: true
5 +});
6 +exports.default = once;
7 +function once(fn) {
8 + return function () {
9 + if (fn === null) return;
10 + var callFn = fn;
11 + fn = null;
12 + callFn.apply(this, arguments);
13 + };
14 +}
15 +module.exports = exports["default"];
...\ No newline at end of file ...\ No newline at end of file
1 +"use strict";
2 +
3 +Object.defineProperty(exports, "__esModule", {
4 + value: true
5 +});
6 +exports.default = onlyOnce;
7 +function onlyOnce(fn) {
8 + return function () {
9 + if (fn === null) throw new Error("Callback was already called.");
10 + var callFn = fn;
11 + fn = null;
12 + callFn.apply(this, arguments);
13 + };
14 +}
15 +module.exports = exports["default"];
...\ No newline at end of file ...\ No newline at end of file
1 +'use strict';
2 +
3 +Object.defineProperty(exports, "__esModule", {
4 + value: true
5 +});
6 +exports.default = _parallel;
7 +
8 +var _noop = require('lodash/noop');
9 +
10 +var _noop2 = _interopRequireDefault(_noop);
11 +
12 +var _isArrayLike = require('lodash/isArrayLike');
13 +
14 +var _isArrayLike2 = _interopRequireDefault(_isArrayLike);
15 +
16 +var _slice = require('./slice');
17 +
18 +var _slice2 = _interopRequireDefault(_slice);
19 +
20 +var _wrapAsync = require('./wrapAsync');
21 +
22 +var _wrapAsync2 = _interopRequireDefault(_wrapAsync);
23 +
24 +function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }
25 +
26 +function _parallel(eachfn, tasks, callback) {
27 + callback = callback || _noop2.default;
28 + var results = (0, _isArrayLike2.default)(tasks) ? [] : {};
29 +
30 + eachfn(tasks, function (task, key, callback) {
31 + (0, _wrapAsync2.default)(task)(function (err, result) {
32 + if (arguments.length > 2) {
33 + result = (0, _slice2.default)(arguments, 1);
34 + }
35 + results[key] = result;
36 + callback(err);
37 + });
38 + }, function (err) {
39 + callback(err, results);
40 + });
41 +}
42 +module.exports = exports['default'];
...\ No newline at end of file ...\ No newline at end of file
1 +'use strict';
2 +
3 +Object.defineProperty(exports, "__esModule", {
4 + value: true
5 +});
6 +exports.default = queue;
7 +
8 +var _baseIndexOf = require('lodash/_baseIndexOf');
9 +
10 +var _baseIndexOf2 = _interopRequireDefault(_baseIndexOf);
11 +
12 +var _isArray = require('lodash/isArray');
13 +
14 +var _isArray2 = _interopRequireDefault(_isArray);
15 +
16 +var _noop = require('lodash/noop');
17 +
18 +var _noop2 = _interopRequireDefault(_noop);
19 +
20 +var _onlyOnce = require('./onlyOnce');
21 +
22 +var _onlyOnce2 = _interopRequireDefault(_onlyOnce);
23 +
24 +var _setImmediate = require('./setImmediate');
25 +
26 +var _setImmediate2 = _interopRequireDefault(_setImmediate);
27 +
28 +var _DoublyLinkedList = require('./DoublyLinkedList');
29 +
30 +var _DoublyLinkedList2 = _interopRequireDefault(_DoublyLinkedList);
31 +
32 +var _wrapAsync = require('./wrapAsync');
33 +
34 +var _wrapAsync2 = _interopRequireDefault(_wrapAsync);
35 +
36 +function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }
37 +
38 +function queue(worker, concurrency, payload) {
39 + if (concurrency == null) {
40 + concurrency = 1;
41 + } else if (concurrency === 0) {
42 + throw new Error('Concurrency must not be zero');
43 + }
44 +
45 + var _worker = (0, _wrapAsync2.default)(worker);
46 + var numRunning = 0;
47 + var workersList = [];
48 +
49 + var processingScheduled = false;
50 + function _insert(data, insertAtFront, callback) {
51 + if (callback != null && typeof callback !== 'function') {
52 + throw new Error('task callback must be a function');
53 + }
54 + q.started = true;
55 + if (!(0, _isArray2.default)(data)) {
56 + data = [data];
57 + }
58 + if (data.length === 0 && q.idle()) {
59 + // call drain immediately if there are no tasks
60 + return (0, _setImmediate2.default)(function () {
61 + q.drain();
62 + });
63 + }
64 +
65 + for (var i = 0, l = data.length; i < l; i++) {
66 + var item = {
67 + data: data[i],
68 + callback: callback || _noop2.default
69 + };
70 +
71 + if (insertAtFront) {
72 + q._tasks.unshift(item);
73 + } else {
74 + q._tasks.push(item);
75 + }
76 + }
77 +
78 + if (!processingScheduled) {
79 + processingScheduled = true;
80 + (0, _setImmediate2.default)(function () {
81 + processingScheduled = false;
82 + q.process();
83 + });
84 + }
85 + }
86 +
87 + function _next(tasks) {
88 + return function (err) {
89 + numRunning -= 1;
90 +
91 + for (var i = 0, l = tasks.length; i < l; i++) {
92 + var task = tasks[i];
93 +
94 + var index = (0, _baseIndexOf2.default)(workersList, task, 0);
95 + if (index === 0) {
96 + workersList.shift();
97 + } else if (index > 0) {
98 + workersList.splice(index, 1);
99 + }
100 +
101 + task.callback.apply(task, arguments);
102 +
103 + if (err != null) {
104 + q.error(err, task.data);
105 + }
106 + }
107 +
108 + if (numRunning <= q.concurrency - q.buffer) {
109 + q.unsaturated();
110 + }
111 +
112 + if (q.idle()) {
113 + q.drain();
114 + }
115 + q.process();
116 + };
117 + }
118 +
119 + var isProcessing = false;
120 + var q = {
121 + _tasks: new _DoublyLinkedList2.default(),
122 + concurrency: concurrency,
123 + payload: payload,
124 + saturated: _noop2.default,
125 + unsaturated: _noop2.default,
126 + buffer: concurrency / 4,
127 + empty: _noop2.default,
128 + drain: _noop2.default,
129 + error: _noop2.default,
130 + started: false,
131 + paused: false,
132 + push: function (data, callback) {
133 + _insert(data, false, callback);
134 + },
135 + kill: function () {
136 + q.drain = _noop2.default;
137 + q._tasks.empty();
138 + },
139 + unshift: function (data, callback) {
140 + _insert(data, true, callback);
141 + },
142 + remove: function (testFn) {
143 + q._tasks.remove(testFn);
144 + },
145 + process: function () {
146 + // Avoid trying to start too many processing operations. This can occur
147 + // when callbacks resolve synchronously (#1267).
148 + if (isProcessing) {
149 + return;
150 + }
151 + isProcessing = true;
152 + while (!q.paused && numRunning < q.concurrency && q._tasks.length) {
153 + var tasks = [],
154 + data = [];
155 + var l = q._tasks.length;
156 + if (q.payload) l = Math.min(l, q.payload);
157 + for (var i = 0; i < l; i++) {
158 + var node = q._tasks.shift();
159 + tasks.push(node);
160 + workersList.push(node);
161 + data.push(node.data);
162 + }
163 +
164 + numRunning += 1;
165 +
166 + if (q._tasks.length === 0) {
167 + q.empty();
168 + }
169 +
170 + if (numRunning === q.concurrency) {
171 + q.saturated();
172 + }
173 +
174 + var cb = (0, _onlyOnce2.default)(_next(tasks));
175 + _worker(data, cb);
176 + }
177 + isProcessing = false;
178 + },
179 + length: function () {
180 + return q._tasks.length;
181 + },
182 + running: function () {
183 + return numRunning;
184 + },
185 + workersList: function () {
186 + return workersList;
187 + },
188 + idle: function () {
189 + return q._tasks.length + numRunning === 0;
190 + },
191 + pause: function () {
192 + q.paused = true;
193 + },
194 + resume: function () {
195 + if (q.paused === false) {
196 + return;
197 + }
198 + q.paused = false;
199 + (0, _setImmediate2.default)(q.process);
200 + }
201 + };
202 + return q;
203 +}
204 +module.exports = exports['default'];
...\ No newline at end of file ...\ No newline at end of file
1 +'use strict';
2 +
3 +Object.defineProperty(exports, "__esModule", {
4 + value: true
5 +});
6 +exports.default = reject;
7 +
8 +var _filter = require('./filter');
9 +
10 +var _filter2 = _interopRequireDefault(_filter);
11 +
12 +function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }
13 +
14 +function reject(eachfn, arr, iteratee, callback) {
15 + (0, _filter2.default)(eachfn, arr, function (value, cb) {
16 + iteratee(value, function (err, v) {
17 + cb(err, !v);
18 + });
19 + }, callback);
20 +}
21 +module.exports = exports['default'];
...\ No newline at end of file ...\ No newline at end of file
1 +'use strict';
2 +
3 +Object.defineProperty(exports, "__esModule", {
4 + value: true
5 +});
6 +exports.hasNextTick = exports.hasSetImmediate = undefined;
7 +exports.fallback = fallback;
8 +exports.wrap = wrap;
9 +
10 +var _slice = require('./slice');
11 +
12 +var _slice2 = _interopRequireDefault(_slice);
13 +
14 +function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }
15 +
16 +var hasSetImmediate = exports.hasSetImmediate = typeof setImmediate === 'function' && setImmediate;
17 +var hasNextTick = exports.hasNextTick = typeof process === 'object' && typeof process.nextTick === 'function';
18 +
19 +function fallback(fn) {
20 + setTimeout(fn, 0);
21 +}
22 +
23 +function wrap(defer) {
24 + return function (fn /*, ...args*/) {
25 + var args = (0, _slice2.default)(arguments, 1);
26 + defer(function () {
27 + fn.apply(null, args);
28 + });
29 + };
30 +}
31 +
32 +var _defer;
33 +
34 +if (hasSetImmediate) {
35 + _defer = setImmediate;
36 +} else if (hasNextTick) {
37 + _defer = process.nextTick;
38 +} else {
39 + _defer = fallback;
40 +}
41 +
42 +exports.default = wrap(_defer);
...\ No newline at end of file ...\ No newline at end of file
1 +"use strict";
2 +
3 +Object.defineProperty(exports, "__esModule", {
4 + value: true
5 +});
6 +exports.default = slice;
7 +function slice(arrayLike, start) {
8 + start = start | 0;
9 + var newLen = Math.max(arrayLike.length - start, 0);
10 + var newArr = Array(newLen);
11 + for (var idx = 0; idx < newLen; idx++) {
12 + newArr[idx] = arrayLike[start + idx];
13 + }
14 + return newArr;
15 +}
16 +module.exports = exports["default"];
...\ No newline at end of file ...\ No newline at end of file
1 +"use strict";
2 +
3 +Object.defineProperty(exports, "__esModule", {
4 + value: true
5 +});
6 +exports.default = _withoutIndex;
7 +function _withoutIndex(iteratee) {
8 + return function (value, index, callback) {
9 + return iteratee(value, callback);
10 + };
11 +}
12 +module.exports = exports["default"];
...\ No newline at end of file ...\ No newline at end of file
1 +'use strict';
2 +
3 +Object.defineProperty(exports, "__esModule", {
4 + value: true
5 +});
6 +exports.isAsync = undefined;
7 +
8 +var _asyncify = require('../asyncify');
9 +
10 +var _asyncify2 = _interopRequireDefault(_asyncify);
11 +
12 +function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }
13 +
14 +var supportsSymbol = typeof Symbol === 'function';
15 +
16 +function isAsync(fn) {
17 + return supportsSymbol && fn[Symbol.toStringTag] === 'AsyncFunction';
18 +}
19 +
20 +function wrapAsync(asyncFn) {
21 + return isAsync(asyncFn) ? (0, _asyncify2.default)(asyncFn) : asyncFn;
22 +}
23 +
24 +exports.default = wrapAsync;
25 +exports.isAsync = isAsync;
...\ No newline at end of file ...\ No newline at end of file
1 +'use strict';
2 +
3 +Object.defineProperty(exports, "__esModule", {
4 + value: true
5 +});
6 +
7 +var _consoleFunc = require('./internal/consoleFunc');
8 +
9 +var _consoleFunc2 = _interopRequireDefault(_consoleFunc);
10 +
11 +function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }
12 +
13 +/**
14 + * Logs the result of an `async` function to the `console`. Only works in
15 + * Node.js or in browsers that support `console.log` and `console.error` (such
16 + * as FF and Chrome). If multiple arguments are returned from the async
17 + * function, `console.log` is called on each argument in order.
18 + *
19 + * @name log
20 + * @static
21 + * @memberOf module:Utils
22 + * @method
23 + * @category Util
24 + * @param {AsyncFunction} function - The function you want to eventually apply
25 + * all arguments to.
26 + * @param {...*} arguments... - Any number of arguments to apply to the function.
27 + * @example
28 + *
29 + * // in a module
30 + * var hello = function(name, callback) {
31 + * setTimeout(function() {
32 + * callback(null, 'hello ' + name);
33 + * }, 1000);
34 + * };
35 + *
36 + * // in the node repl
37 + * node> async.log(hello, 'world');
38 + * 'hello world'
39 + */
40 +exports.default = (0, _consoleFunc2.default)('log');
41 +module.exports = exports['default'];
...\ No newline at end of file ...\ No newline at end of file
1 +'use strict';
2 +
3 +Object.defineProperty(exports, "__esModule", {
4 + value: true
5 +});
6 +
7 +var _doParallel = require('./internal/doParallel');
8 +
9 +var _doParallel2 = _interopRequireDefault(_doParallel);
10 +
11 +var _map = require('./internal/map');
12 +
13 +var _map2 = _interopRequireDefault(_map);
14 +
15 +function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }
16 +
17 +/**
18 + * Produces a new collection of values by mapping each value in `coll` through
19 + * the `iteratee` function. The `iteratee` is called with an item from `coll`
20 + * and a callback for when it has finished processing. Each of these callback
21 + * takes 2 arguments: an `error`, and the transformed item from `coll`. If
22 + * `iteratee` passes an error to its callback, the main `callback` (for the
23 + * `map` function) is immediately called with the error.
24 + *
25 + * Note, that since this function applies the `iteratee` to each item in
26 + * parallel, there is no guarantee that the `iteratee` functions will complete
27 + * in order. However, the results array will be in the same order as the
28 + * original `coll`.
29 + *
30 + * If `map` is passed an Object, the results will be an Array. The results
31 + * will roughly be in the order of the original Objects' keys (but this can
32 + * vary across JavaScript engines).
33 + *
34 + * @name map
35 + * @static
36 + * @memberOf module:Collections
37 + * @method
38 + * @category Collection
39 + * @param {Array|Iterable|Object} coll - A collection to iterate over.
40 + * @param {AsyncFunction} iteratee - An async function to apply to each item in
41 + * `coll`.
42 + * The iteratee should complete with the transformed item.
43 + * Invoked with (item, callback).
44 + * @param {Function} [callback] - A callback which is called when all `iteratee`
45 + * functions have finished, or an error occurs. Results is an Array of the
46 + * transformed items from the `coll`. Invoked with (err, results).
47 + * @example
48 + *
49 + * async.map(['file1','file2','file3'], fs.stat, function(err, results) {
50 + * // results is now an array of stats for each file
51 + * });
52 + */
53 +exports.default = (0, _doParallel2.default)(_map2.default);
54 +module.exports = exports['default'];
...\ No newline at end of file ...\ No newline at end of file
1 +'use strict';
2 +
3 +Object.defineProperty(exports, "__esModule", {
4 + value: true
5 +});
6 +
7 +var _doParallelLimit = require('./internal/doParallelLimit');
8 +
9 +var _doParallelLimit2 = _interopRequireDefault(_doParallelLimit);
10 +
11 +var _map = require('./internal/map');
12 +
13 +var _map2 = _interopRequireDefault(_map);
14 +
15 +function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }
16 +
17 +/**
18 + * The same as [`map`]{@link module:Collections.map} but runs a maximum of `limit` async operations at a time.
19 + *
20 + * @name mapLimit
21 + * @static
22 + * @memberOf module:Collections
23 + * @method
24 + * @see [async.map]{@link module:Collections.map}
25 + * @category Collection
26 + * @param {Array|Iterable|Object} coll - A collection to iterate over.
27 + * @param {number} limit - The maximum number of async operations at a time.
28 + * @param {AsyncFunction} iteratee - An async function to apply to each item in
29 + * `coll`.
30 + * The iteratee should complete with the transformed item.
31 + * Invoked with (item, callback).
32 + * @param {Function} [callback] - A callback which is called when all `iteratee`
33 + * functions have finished, or an error occurs. Results is an array of the
34 + * transformed items from the `coll`. Invoked with (err, results).
35 + */
36 +exports.default = (0, _doParallelLimit2.default)(_map2.default);
37 +module.exports = exports['default'];
...\ No newline at end of file ...\ No newline at end of file
1 +'use strict';
2 +
3 +Object.defineProperty(exports, "__esModule", {
4 + value: true
5 +});
6 +
7 +var _mapLimit = require('./mapLimit');
8 +
9 +var _mapLimit2 = _interopRequireDefault(_mapLimit);
10 +
11 +var _doLimit = require('./internal/doLimit');
12 +
13 +var _doLimit2 = _interopRequireDefault(_doLimit);
14 +
15 +function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }
16 +
17 +/**
18 + * The same as [`map`]{@link module:Collections.map} but runs only a single async operation at a time.
19 + *
20 + * @name mapSeries
21 + * @static
22 + * @memberOf module:Collections
23 + * @method
24 + * @see [async.map]{@link module:Collections.map}
25 + * @category Collection
26 + * @param {Array|Iterable|Object} coll - A collection to iterate over.
27 + * @param {AsyncFunction} iteratee - An async function to apply to each item in
28 + * `coll`.
29 + * The iteratee should complete with the transformed item.
30 + * Invoked with (item, callback).
31 + * @param {Function} [callback] - A callback which is called when all `iteratee`
32 + * functions have finished, or an error occurs. Results is an array of the
33 + * transformed items from the `coll`. Invoked with (err, results).
34 + */
35 +exports.default = (0, _doLimit2.default)(_mapLimit2.default, 1);
36 +module.exports = exports['default'];
...\ No newline at end of file ...\ No newline at end of file
1 +'use strict';
2 +
3 +Object.defineProperty(exports, "__esModule", {
4 + value: true
5 +});
6 +
7 +var _mapValuesLimit = require('./mapValuesLimit');
8 +
9 +var _mapValuesLimit2 = _interopRequireDefault(_mapValuesLimit);
10 +
11 +var _doLimit = require('./internal/doLimit');
12 +
13 +var _doLimit2 = _interopRequireDefault(_doLimit);
14 +
15 +function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }
16 +
17 +/**
18 + * A relative of [`map`]{@link module:Collections.map}, designed for use with objects.
19 + *
20 + * Produces a new Object by mapping each value of `obj` through the `iteratee`
21 + * function. The `iteratee` is called each `value` and `key` from `obj` and a
22 + * callback for when it has finished processing. Each of these callbacks takes
23 + * two arguments: an `error`, and the transformed item from `obj`. If `iteratee`
24 + * passes an error to its callback, the main `callback` (for the `mapValues`
25 + * function) is immediately called with the error.
26 + *
27 + * Note, the order of the keys in the result is not guaranteed. The keys will
28 + * be roughly in the order they complete, (but this is very engine-specific)
29 + *
30 + * @name mapValues
31 + * @static
32 + * @memberOf module:Collections
33 + * @method
34 + * @category Collection
35 + * @param {Object} obj - A collection to iterate over.
36 + * @param {AsyncFunction} iteratee - A function to apply to each value and key
37 + * in `coll`.
38 + * The iteratee should complete with the transformed value as its result.
39 + * Invoked with (value, key, callback).
40 + * @param {Function} [callback] - A callback which is called when all `iteratee`
41 + * functions have finished, or an error occurs. `result` is a new object consisting
42 + * of each key from `obj`, with each transformed value on the right-hand side.
43 + * Invoked with (err, result).
44 + * @example
45 + *
46 + * async.mapValues({
47 + * f1: 'file1',
48 + * f2: 'file2',
49 + * f3: 'file3'
50 + * }, function (file, key, callback) {
51 + * fs.stat(file, callback);
52 + * }, function(err, result) {
53 + * // result is now a map of stats for each file, e.g.
54 + * // {
55 + * // f1: [stats for file1],
56 + * // f2: [stats for file2],
57 + * // f3: [stats for file3]
58 + * // }
59 + * });
60 + */
61 +
62 +exports.default = (0, _doLimit2.default)(_mapValuesLimit2.default, Infinity);
63 +module.exports = exports['default'];
...\ No newline at end of file ...\ No newline at end of file
1 +'use strict';
2 +
3 +Object.defineProperty(exports, "__esModule", {
4 + value: true
5 +});
6 +exports.default = mapValuesLimit;
7 +
8 +var _eachOfLimit = require('./eachOfLimit');
9 +
10 +var _eachOfLimit2 = _interopRequireDefault(_eachOfLimit);
11 +
12 +var _noop = require('lodash/noop');
13 +
14 +var _noop2 = _interopRequireDefault(_noop);
15 +
16 +var _once = require('./internal/once');
17 +
18 +var _once2 = _interopRequireDefault(_once);
19 +
20 +var _wrapAsync = require('./internal/wrapAsync');
21 +
22 +var _wrapAsync2 = _interopRequireDefault(_wrapAsync);
23 +
24 +function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }
25 +
26 +/**
27 + * The same as [`mapValues`]{@link module:Collections.mapValues} but runs a maximum of `limit` async operations at a
28 + * time.
29 + *
30 + * @name mapValuesLimit
31 + * @static
32 + * @memberOf module:Collections
33 + * @method
34 + * @see [async.mapValues]{@link module:Collections.mapValues}
35 + * @category Collection
36 + * @param {Object} obj - A collection to iterate over.
37 + * @param {number} limit - The maximum number of async operations at a time.
38 + * @param {AsyncFunction} iteratee - A function to apply to each value and key
39 + * in `coll`.
40 + * The iteratee should complete with the transformed value as its result.
41 + * Invoked with (value, key, callback).
42 + * @param {Function} [callback] - A callback which is called when all `iteratee`
43 + * functions have finished, or an error occurs. `result` is a new object consisting
44 + * of each key from `obj`, with each transformed value on the right-hand side.
45 + * Invoked with (err, result).
46 + */
47 +function mapValuesLimit(obj, limit, iteratee, callback) {
48 + callback = (0, _once2.default)(callback || _noop2.default);
49 + var newObj = {};
50 + var _iteratee = (0, _wrapAsync2.default)(iteratee);
51 + (0, _eachOfLimit2.default)(obj, limit, function (val, key, next) {
52 + _iteratee(val, key, function (err, result) {
53 + if (err) return next(err);
54 + newObj[key] = result;
55 + next();
56 + });
57 + }, function (err) {
58 + callback(err, newObj);
59 + });
60 +}
61 +module.exports = exports['default'];
...\ No newline at end of file ...\ No newline at end of file
1 +'use strict';
2 +
3 +Object.defineProperty(exports, "__esModule", {
4 + value: true
5 +});
6 +
7 +var _mapValuesLimit = require('./mapValuesLimit');
8 +
9 +var _mapValuesLimit2 = _interopRequireDefault(_mapValuesLimit);
10 +
11 +var _doLimit = require('./internal/doLimit');
12 +
13 +var _doLimit2 = _interopRequireDefault(_doLimit);
14 +
15 +function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }
16 +
17 +/**
18 + * The same as [`mapValues`]{@link module:Collections.mapValues} but runs only a single async operation at a time.
19 + *
20 + * @name mapValuesSeries
21 + * @static
22 + * @memberOf module:Collections
23 + * @method
24 + * @see [async.mapValues]{@link module:Collections.mapValues}
25 + * @category Collection
26 + * @param {Object} obj - A collection to iterate over.
27 + * @param {AsyncFunction} iteratee - A function to apply to each value and key
28 + * in `coll`.
29 + * The iteratee should complete with the transformed value as its result.
30 + * Invoked with (value, key, callback).
31 + * @param {Function} [callback] - A callback which is called when all `iteratee`
32 + * functions have finished, or an error occurs. `result` is a new object consisting
33 + * of each key from `obj`, with each transformed value on the right-hand side.
34 + * Invoked with (err, result).
35 + */
36 +exports.default = (0, _doLimit2.default)(_mapValuesLimit2.default, 1);
37 +module.exports = exports['default'];
...\ No newline at end of file ...\ No newline at end of file
1 +'use strict';
2 +
3 +Object.defineProperty(exports, "__esModule", {
4 + value: true
5 +});
6 +exports.default = memoize;
7 +
8 +var _identity = require('lodash/identity');
9 +
10 +var _identity2 = _interopRequireDefault(_identity);
11 +
12 +var _slice = require('./internal/slice');
13 +
14 +var _slice2 = _interopRequireDefault(_slice);
15 +
16 +var _setImmediate = require('./internal/setImmediate');
17 +
18 +var _setImmediate2 = _interopRequireDefault(_setImmediate);
19 +
20 +var _initialParams = require('./internal/initialParams');
21 +
22 +var _initialParams2 = _interopRequireDefault(_initialParams);
23 +
24 +var _wrapAsync = require('./internal/wrapAsync');
25 +
26 +var _wrapAsync2 = _interopRequireDefault(_wrapAsync);
27 +
28 +function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }
29 +
30 +function has(obj, key) {
31 + return key in obj;
32 +}
33 +
34 +/**
35 + * Caches the results of an async function. When creating a hash to store
36 + * function results against, the callback is omitted from the hash and an
37 + * optional hash function can be used.
38 + *
39 + * If no hash function is specified, the first argument is used as a hash key,
40 + * which may work reasonably if it is a string or a data type that converts to a
41 + * distinct string. Note that objects and arrays will not behave reasonably.
42 + * Neither will cases where the other arguments are significant. In such cases,
43 + * specify your own hash function.
44 + *
45 + * The cache of results is exposed as the `memo` property of the function
46 + * returned by `memoize`.
47 + *
48 + * @name memoize
49 + * @static
50 + * @memberOf module:Utils
51 + * @method
52 + * @category Util
53 + * @param {AsyncFunction} fn - The async function to proxy and cache results from.
54 + * @param {Function} hasher - An optional function for generating a custom hash
55 + * for storing results. It has all the arguments applied to it apart from the
56 + * callback, and must be synchronous.
57 + * @returns {AsyncFunction} a memoized version of `fn`
58 + * @example
59 + *
60 + * var slow_fn = function(name, callback) {
61 + * // do something
62 + * callback(null, result);
63 + * };
64 + * var fn = async.memoize(slow_fn);
65 + *
66 + * // fn can now be used as if it were slow_fn
67 + * fn('some name', function() {
68 + * // callback
69 + * });
70 + */
71 +function memoize(fn, hasher) {
72 + var memo = Object.create(null);
73 + var queues = Object.create(null);
74 + hasher = hasher || _identity2.default;
75 + var _fn = (0, _wrapAsync2.default)(fn);
76 + var memoized = (0, _initialParams2.default)(function memoized(args, callback) {
77 + var key = hasher.apply(null, args);
78 + if (has(memo, key)) {
79 + (0, _setImmediate2.default)(function () {
80 + callback.apply(null, memo[key]);
81 + });
82 + } else if (has(queues, key)) {
83 + queues[key].push(callback);
84 + } else {
85 + queues[key] = [callback];
86 + _fn.apply(null, args.concat(function () /*args*/{
87 + var args = (0, _slice2.default)(arguments);
88 + memo[key] = args;
89 + var q = queues[key];
90 + delete queues[key];
91 + for (var i = 0, l = q.length; i < l; i++) {
92 + q[i].apply(null, args);
93 + }
94 + }));
95 + }
96 + });
97 + memoized.memo = memo;
98 + memoized.unmemoized = fn;
99 + return memoized;
100 +}
101 +module.exports = exports['default'];
...\ No newline at end of file ...\ No newline at end of file
1 +'use strict';
2 +
3 +Object.defineProperty(exports, "__esModule", {
4 + value: true
5 +});
6 +
7 +var _setImmediate = require('./internal/setImmediate');
8 +
9 +/**
10 + * Calls `callback` on a later loop around the event loop. In Node.js this just
11 + * calls `process.nextTick`. In the browser it will use `setImmediate` if
12 + * available, otherwise `setTimeout(callback, 0)`, which means other higher
13 + * priority events may precede the execution of `callback`.
14 + *
15 + * This is used internally for browser-compatibility purposes.
16 + *
17 + * @name nextTick
18 + * @static
19 + * @memberOf module:Utils
20 + * @method
21 + * @see [async.setImmediate]{@link module:Utils.setImmediate}
22 + * @category Util
23 + * @param {Function} callback - The function to call on a later loop around
24 + * the event loop. Invoked with (args...).
25 + * @param {...*} args... - any number of additional arguments to pass to the
26 + * callback on the next tick.
27 + * @example
28 + *
29 + * var call_order = [];
30 + * async.nextTick(function() {
31 + * call_order.push('two');
32 + * // call_order now equals ['one','two']
33 + * });
34 + * call_order.push('one');
35 + *
36 + * async.setImmediate(function (a, b, c) {
37 + * // a, b, and c equal 1, 2, and 3
38 + * }, 1, 2, 3);
39 + */
40 +var _defer;
41 +
42 +if (_setImmediate.hasNextTick) {
43 + _defer = process.nextTick;
44 +} else if (_setImmediate.hasSetImmediate) {
45 + _defer = setImmediate;
46 +} else {
47 + _defer = _setImmediate.fallback;
48 +}
49 +
50 +exports.default = (0, _setImmediate.wrap)(_defer);
51 +module.exports = exports['default'];
...\ No newline at end of file ...\ No newline at end of file
1 +{
2 + "_from": "async",
3 + "_id": "async@2.6.1",
4 + "_inBundle": false,
5 + "_integrity": "sha512-fNEiL2+AZt6AlAw/29Cr0UDe4sRAHCpEHh54WMz+Bb7QfNcFw4h3loofyJpLeQs4Yx7yuqu/2dLgM5hKOs6HlQ==",
6 + "_location": "/async",
7 + "_phantomChildren": {},
8 + "_requested": {
9 + "type": "tag",
10 + "registry": true,
11 + "raw": "async",
12 + "name": "async",
13 + "escapedName": "async",
14 + "rawSpec": "",
15 + "saveSpec": null,
16 + "fetchSpec": "latest"
17 + },
18 + "_requiredBy": [
19 + "#USER",
20 + "/"
21 + ],
22 + "_resolved": "https://registry.npmjs.org/async/-/async-2.6.1.tgz",
23 + "_shasum": "b245a23ca71930044ec53fa46aa00a3e87c6a610",
24 + "_spec": "async",
25 + "_where": "D:\\OneDrive\\University Life\\2018\\2nd semester\\OpenSourceSoftware\\KaKao_ChatBot",
26 + "author": {
27 + "name": "Caolan McMahon"
28 + },
29 + "bugs": {
30 + "url": "https://github.com/caolan/async/issues"
31 + },
32 + "bundleDependencies": false,
33 + "dependencies": {
34 + "lodash": "^4.17.10"
35 + },
36 + "deprecated": false,
37 + "description": "Higher-order functions and common patterns for asynchronous code",
38 + "devDependencies": {
39 + "babel-cli": "^6.24.0",
40 + "babel-core": "^6.26.3",
41 + "babel-plugin-add-module-exports": "^0.2.1",
42 + "babel-plugin-istanbul": "^2.0.1",
43 + "babel-plugin-transform-es2015-modules-commonjs": "^6.26.2",
44 + "babel-preset-es2015": "^6.3.13",
45 + "babel-preset-es2017": "^6.22.0",
46 + "babelify": "^8.0.0",
47 + "benchmark": "^2.1.1",
48 + "bluebird": "^3.4.6",
49 + "browserify": "^16.2.2",
50 + "chai": "^4.1.2",
51 + "cheerio": "^0.22.0",
52 + "coveralls": "^3.0.1",
53 + "es6-promise": "^2.3.0",
54 + "eslint": "^2.13.1",
55 + "fs-extra": "^0.26.7",
56 + "gh-pages-deploy": "^0.5.0",
57 + "jsdoc": "^3.4.0",
58 + "karma": "^2.0.2",
59 + "karma-browserify": "^5.2.0",
60 + "karma-firefox-launcher": "^1.1.0",
61 + "karma-mocha": "^1.2.0",
62 + "karma-mocha-reporter": "^2.2.0",
63 + "mocha": "^5.2.0",
64 + "native-promise-only": "^0.8.0-a",
65 + "nyc": "^11.8.0",
66 + "rimraf": "^2.5.0",
67 + "rollup": "^0.36.3",
68 + "rollup-plugin-node-resolve": "^2.0.0",
69 + "rollup-plugin-npm": "^2.0.0",
70 + "rsvp": "^3.0.18",
71 + "semver": "^5.5.0",
72 + "uglify-js": "~2.7.3",
73 + "yargs": "^11.0.0"
74 + },
75 + "gh-pages-deploy": {
76 + "staticpath": "docs"
77 + },
78 + "homepage": "https://caolan.github.io/async/",
79 + "keywords": [
80 + "async",
81 + "callback",
82 + "module",
83 + "utility"
84 + ],
85 + "license": "MIT",
86 + "main": "dist/async.js",
87 + "name": "async",
88 + "nyc": {
89 + "exclude": [
90 + "mocha_test"
91 + ]
92 + },
93 + "repository": {
94 + "type": "git",
95 + "url": "git+https://github.com/caolan/async.git"
96 + },
97 + "scripts": {
98 + "coverage": "nyc npm run mocha-node-test -- --grep @nycinvalid --invert",
99 + "coveralls": "npm run coverage && nyc report --reporter=text-lcov | coveralls",
100 + "jsdoc": "jsdoc -c ./support/jsdoc/jsdoc.json && node support/jsdoc/jsdoc-fix-html.js",
101 + "lint": "eslint lib/ mocha_test/ perf/memory.js perf/suites.js perf/benchmark.js support/build/ support/*.js karma.conf.js",
102 + "mocha-browser-test": "karma start",
103 + "mocha-node-test": "mocha mocha_test/ --compilers js:babel-core/register",
104 + "mocha-test": "npm run mocha-node-test && npm run mocha-browser-test",
105 + "test": "npm run lint && npm run mocha-node-test"
106 + },
107 + "version": "2.6.1"
108 +}
1 +'use strict';
2 +
3 +Object.defineProperty(exports, "__esModule", {
4 + value: true
5 +});
6 +exports.default = parallelLimit;
7 +
8 +var _eachOf = require('./eachOf');
9 +
10 +var _eachOf2 = _interopRequireDefault(_eachOf);
11 +
12 +var _parallel = require('./internal/parallel');
13 +
14 +var _parallel2 = _interopRequireDefault(_parallel);
15 +
16 +function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }
17 +
18 +/**
19 + * Run the `tasks` collection of functions in parallel, without waiting until
20 + * the previous function has completed. If any of the functions pass an error to
21 + * its callback, the main `callback` is immediately called with the value of the
22 + * error. Once the `tasks` have completed, the results are passed to the final
23 + * `callback` as an array.
24 + *
25 + * **Note:** `parallel` is about kicking-off I/O tasks in parallel, not about
26 + * parallel execution of code. If your tasks do not use any timers or perform
27 + * any I/O, they will actually be executed in series. Any synchronous setup
28 + * sections for each task will happen one after the other. JavaScript remains
29 + * single-threaded.
30 + *
31 + * **Hint:** Use [`reflect`]{@link module:Utils.reflect} to continue the
32 + * execution of other tasks when a task fails.
33 + *
34 + * It is also possible to use an object instead of an array. Each property will
35 + * be run as a function and the results will be passed to the final `callback`
36 + * as an object instead of an array. This can be a more readable way of handling
37 + * results from {@link async.parallel}.
38 + *
39 + * @name parallel
40 + * @static
41 + * @memberOf module:ControlFlow
42 + * @method
43 + * @category Control Flow
44 + * @param {Array|Iterable|Object} tasks - A collection of
45 + * [async functions]{@link AsyncFunction} to run.
46 + * Each async function can complete with any number of optional `result` values.
47 + * @param {Function} [callback] - An optional callback to run once all the
48 + * functions have completed successfully. This function gets a results array
49 + * (or object) containing all the result arguments passed to the task callbacks.
50 + * Invoked with (err, results).
51 + *
52 + * @example
53 + * async.parallel([
54 + * function(callback) {
55 + * setTimeout(function() {
56 + * callback(null, 'one');
57 + * }, 200);
58 + * },
59 + * function(callback) {
60 + * setTimeout(function() {
61 + * callback(null, 'two');
62 + * }, 100);
63 + * }
64 + * ],
65 + * // optional callback
66 + * function(err, results) {
67 + * // the results array will equal ['one','two'] even though
68 + * // the second function had a shorter timeout.
69 + * });
70 + *
71 + * // an example using an object instead of an array
72 + * async.parallel({
73 + * one: function(callback) {
74 + * setTimeout(function() {
75 + * callback(null, 1);
76 + * }, 200);
77 + * },
78 + * two: function(callback) {
79 + * setTimeout(function() {
80 + * callback(null, 2);
81 + * }, 100);
82 + * }
83 + * }, function(err, results) {
84 + * // results is now equals to: {one: 1, two: 2}
85 + * });
86 + */
87 +function parallelLimit(tasks, callback) {
88 + (0, _parallel2.default)(_eachOf2.default, tasks, callback);
89 +}
90 +module.exports = exports['default'];
...\ No newline at end of file ...\ No newline at end of file
1 +'use strict';
2 +
3 +Object.defineProperty(exports, "__esModule", {
4 + value: true
5 +});
6 +exports.default = parallelLimit;
7 +
8 +var _eachOfLimit = require('./internal/eachOfLimit');
9 +
10 +var _eachOfLimit2 = _interopRequireDefault(_eachOfLimit);
11 +
12 +var _parallel = require('./internal/parallel');
13 +
14 +var _parallel2 = _interopRequireDefault(_parallel);
15 +
16 +function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }
17 +
18 +/**
19 + * The same as [`parallel`]{@link module:ControlFlow.parallel} but runs a maximum of `limit` async operations at a
20 + * time.
21 + *
22 + * @name parallelLimit
23 + * @static
24 + * @memberOf module:ControlFlow
25 + * @method
26 + * @see [async.parallel]{@link module:ControlFlow.parallel}
27 + * @category Control Flow
28 + * @param {Array|Iterable|Object} tasks - A collection of
29 + * [async functions]{@link AsyncFunction} to run.
30 + * Each async function can complete with any number of optional `result` values.
31 + * @param {number} limit - The maximum number of async operations at a time.
32 + * @param {Function} [callback] - An optional callback to run once all the
33 + * functions have completed successfully. This function gets a results array
34 + * (or object) containing all the result arguments passed to the task callbacks.
35 + * Invoked with (err, results).
36 + */
37 +function parallelLimit(tasks, limit, callback) {
38 + (0, _parallel2.default)((0, _eachOfLimit2.default)(limit), tasks, callback);
39 +}
40 +module.exports = exports['default'];
...\ No newline at end of file ...\ No newline at end of file
1 +'use strict';
2 +
3 +Object.defineProperty(exports, "__esModule", {
4 + value: true
5 +});
6 +
7 +exports.default = function (worker, concurrency) {
8 + // Start with a normal queue
9 + var q = (0, _queue2.default)(worker, concurrency);
10 +
11 + // Override push to accept second parameter representing priority
12 + q.push = function (data, priority, callback) {
13 + if (callback == null) callback = _noop2.default;
14 + if (typeof callback !== 'function') {
15 + throw new Error('task callback must be a function');
16 + }
17 + q.started = true;
18 + if (!(0, _isArray2.default)(data)) {
19 + data = [data];
20 + }
21 + if (data.length === 0) {
22 + // call drain immediately if there are no tasks
23 + return (0, _setImmediate2.default)(function () {
24 + q.drain();
25 + });
26 + }
27 +
28 + priority = priority || 0;
29 + var nextNode = q._tasks.head;
30 + while (nextNode && priority >= nextNode.priority) {
31 + nextNode = nextNode.next;
32 + }
33 +
34 + for (var i = 0, l = data.length; i < l; i++) {
35 + var item = {
36 + data: data[i],
37 + priority: priority,
38 + callback: callback
39 + };
40 +
41 + if (nextNode) {
42 + q._tasks.insertBefore(nextNode, item);
43 + } else {
44 + q._tasks.push(item);
45 + }
46 + }
47 + (0, _setImmediate2.default)(q.process);
48 + };
49 +
50 + // Remove unshift function
51 + delete q.unshift;
52 +
53 + return q;
54 +};
55 +
56 +var _isArray = require('lodash/isArray');
57 +
58 +var _isArray2 = _interopRequireDefault(_isArray);
59 +
60 +var _noop = require('lodash/noop');
61 +
62 +var _noop2 = _interopRequireDefault(_noop);
63 +
64 +var _setImmediate = require('./setImmediate');
65 +
66 +var _setImmediate2 = _interopRequireDefault(_setImmediate);
67 +
68 +var _queue = require('./queue');
69 +
70 +var _queue2 = _interopRequireDefault(_queue);
71 +
72 +function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }
73 +
74 +module.exports = exports['default'];
75 +
76 +/**
77 + * The same as [async.queue]{@link module:ControlFlow.queue} only tasks are assigned a priority and
78 + * completed in ascending priority order.
79 + *
80 + * @name priorityQueue
81 + * @static
82 + * @memberOf module:ControlFlow
83 + * @method
84 + * @see [async.queue]{@link module:ControlFlow.queue}
85 + * @category Control Flow
86 + * @param {AsyncFunction} worker - An async function for processing a queued task.
87 + * If you want to handle errors from an individual task, pass a callback to
88 + * `q.push()`.
89 + * Invoked with (task, callback).
90 + * @param {number} concurrency - An `integer` for determining how many `worker`
91 + * functions should be run in parallel. If omitted, the concurrency defaults to
92 + * `1`. If the concurrency is `0`, an error is thrown.
93 + * @returns {module:ControlFlow.QueueObject} A priorityQueue object to manage the tasks. There are two
94 + * differences between `queue` and `priorityQueue` objects:
95 + * * `push(task, priority, [callback])` - `priority` should be a number. If an
96 + * array of `tasks` is given, all tasks will be assigned the same priority.
97 + * * The `unshift` method was removed.
98 + */
...\ No newline at end of file ...\ No newline at end of file
1 +'use strict';
2 +
3 +Object.defineProperty(exports, "__esModule", {
4 + value: true
5 +});
6 +
7 +exports.default = function (worker, concurrency) {
8 + var _worker = (0, _wrapAsync2.default)(worker);
9 + return (0, _queue2.default)(function (items, cb) {
10 + _worker(items[0], cb);
11 + }, concurrency, 1);
12 +};
13 +
14 +var _queue = require('./internal/queue');
15 +
16 +var _queue2 = _interopRequireDefault(_queue);
17 +
18 +var _wrapAsync = require('./internal/wrapAsync');
19 +
20 +var _wrapAsync2 = _interopRequireDefault(_wrapAsync);
21 +
22 +function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }
23 +
24 +module.exports = exports['default'];
25 +
26 +/**
27 + * A queue of tasks for the worker function to complete.
28 + * @typedef {Object} QueueObject
29 + * @memberOf module:ControlFlow
30 + * @property {Function} length - a function returning the number of items
31 + * waiting to be processed. Invoke with `queue.length()`.
32 + * @property {boolean} started - a boolean indicating whether or not any
33 + * items have been pushed and processed by the queue.
34 + * @property {Function} running - a function returning the number of items
35 + * currently being processed. Invoke with `queue.running()`.
36 + * @property {Function} workersList - a function returning the array of items
37 + * currently being processed. Invoke with `queue.workersList()`.
38 + * @property {Function} idle - a function returning false if there are items
39 + * waiting or being processed, or true if not. Invoke with `queue.idle()`.
40 + * @property {number} concurrency - an integer for determining how many `worker`
41 + * functions should be run in parallel. This property can be changed after a
42 + * `queue` is created to alter the concurrency on-the-fly.
43 + * @property {Function} push - add a new task to the `queue`. Calls `callback`
44 + * once the `worker` has finished processing the task. Instead of a single task,
45 + * a `tasks` array can be submitted. The respective callback is used for every
46 + * task in the list. Invoke with `queue.push(task, [callback])`,
47 + * @property {Function} unshift - add a new task to the front of the `queue`.
48 + * Invoke with `queue.unshift(task, [callback])`.
49 + * @property {Function} remove - remove items from the queue that match a test
50 + * function. The test function will be passed an object with a `data` property,
51 + * and a `priority` property, if this is a
52 + * [priorityQueue]{@link module:ControlFlow.priorityQueue} object.
53 + * Invoked with `queue.remove(testFn)`, where `testFn` is of the form
54 + * `function ({data, priority}) {}` and returns a Boolean.
55 + * @property {Function} saturated - a callback that is called when the number of
56 + * running workers hits the `concurrency` limit, and further tasks will be
57 + * queued.
58 + * @property {Function} unsaturated - a callback that is called when the number
59 + * of running workers is less than the `concurrency` & `buffer` limits, and
60 + * further tasks will not be queued.
61 + * @property {number} buffer - A minimum threshold buffer in order to say that
62 + * the `queue` is `unsaturated`.
63 + * @property {Function} empty - a callback that is called when the last item
64 + * from the `queue` is given to a `worker`.
65 + * @property {Function} drain - a callback that is called when the last item
66 + * from the `queue` has returned from the `worker`.
67 + * @property {Function} error - a callback that is called when a task errors.
68 + * Has the signature `function(error, task)`.
69 + * @property {boolean} paused - a boolean for determining whether the queue is
70 + * in a paused state.
71 + * @property {Function} pause - a function that pauses the processing of tasks
72 + * until `resume()` is called. Invoke with `queue.pause()`.
73 + * @property {Function} resume - a function that resumes the processing of
74 + * queued tasks when the queue is paused. Invoke with `queue.resume()`.
75 + * @property {Function} kill - a function that removes the `drain` callback and
76 + * empties remaining tasks from the queue forcing it to go idle. No more tasks
77 + * should be pushed to the queue after calling this function. Invoke with `queue.kill()`.
78 + */
79 +
80 +/**
81 + * Creates a `queue` object with the specified `concurrency`. Tasks added to the
82 + * `queue` are processed in parallel (up to the `concurrency` limit). If all
83 + * `worker`s are in progress, the task is queued until one becomes available.
84 + * Once a `worker` completes a `task`, that `task`'s callback is called.
85 + *
86 + * @name queue
87 + * @static
88 + * @memberOf module:ControlFlow
89 + * @method
90 + * @category Control Flow
91 + * @param {AsyncFunction} worker - An async function for processing a queued task.
92 + * If you want to handle errors from an individual task, pass a callback to
93 + * `q.push()`. Invoked with (task, callback).
94 + * @param {number} [concurrency=1] - An `integer` for determining how many
95 + * `worker` functions should be run in parallel. If omitted, the concurrency
96 + * defaults to `1`. If the concurrency is `0`, an error is thrown.
97 + * @returns {module:ControlFlow.QueueObject} A queue object to manage the tasks. Callbacks can
98 + * attached as certain properties to listen for specific events during the
99 + * lifecycle of the queue.
100 + * @example
101 + *
102 + * // create a queue object with concurrency 2
103 + * var q = async.queue(function(task, callback) {
104 + * console.log('hello ' + task.name);
105 + * callback();
106 + * }, 2);
107 + *
108 + * // assign a callback
109 + * q.drain = function() {
110 + * console.log('all items have been processed');
111 + * };
112 + *
113 + * // add some items to the queue
114 + * q.push({name: 'foo'}, function(err) {
115 + * console.log('finished processing foo');
116 + * });
117 + * q.push({name: 'bar'}, function (err) {
118 + * console.log('finished processing bar');
119 + * });
120 + *
121 + * // add some items to the queue (batch-wise)
122 + * q.push([{name: 'baz'},{name: 'bay'},{name: 'bax'}], function(err) {
123 + * console.log('finished processing item');
124 + * });
125 + *
126 + * // add some items to the front of the queue
127 + * q.unshift({name: 'bar'}, function (err) {
128 + * console.log('finished processing bar');
129 + * });
130 + */
...\ No newline at end of file ...\ No newline at end of file
1 +'use strict';
2 +
3 +Object.defineProperty(exports, "__esModule", {
4 + value: true
5 +});
6 +exports.default = race;
7 +
8 +var _isArray = require('lodash/isArray');
9 +
10 +var _isArray2 = _interopRequireDefault(_isArray);
11 +
12 +var _noop = require('lodash/noop');
13 +
14 +var _noop2 = _interopRequireDefault(_noop);
15 +
16 +var _once = require('./internal/once');
17 +
18 +var _once2 = _interopRequireDefault(_once);
19 +
20 +var _wrapAsync = require('./internal/wrapAsync');
21 +
22 +var _wrapAsync2 = _interopRequireDefault(_wrapAsync);
23 +
24 +function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }
25 +
26 +/**
27 + * Runs the `tasks` array of functions in parallel, without waiting until the
28 + * previous function has completed. Once any of the `tasks` complete or pass an
29 + * error to its callback, the main `callback` is immediately called. It's
30 + * equivalent to `Promise.race()`.
31 + *
32 + * @name race
33 + * @static
34 + * @memberOf module:ControlFlow
35 + * @method
36 + * @category Control Flow
37 + * @param {Array} tasks - An array containing [async functions]{@link AsyncFunction}
38 + * to run. Each function can complete with an optional `result` value.
39 + * @param {Function} callback - A callback to run once any of the functions have
40 + * completed. This function gets an error or result from the first function that
41 + * completed. Invoked with (err, result).
42 + * @returns undefined
43 + * @example
44 + *
45 + * async.race([
46 + * function(callback) {
47 + * setTimeout(function() {
48 + * callback(null, 'one');
49 + * }, 200);
50 + * },
51 + * function(callback) {
52 + * setTimeout(function() {
53 + * callback(null, 'two');
54 + * }, 100);
55 + * }
56 + * ],
57 + * // main callback
58 + * function(err, result) {
59 + * // the result will be equal to 'two' as it finishes earlier
60 + * });
61 + */
62 +function race(tasks, callback) {
63 + callback = (0, _once2.default)(callback || _noop2.default);
64 + if (!(0, _isArray2.default)(tasks)) return callback(new TypeError('First argument to race must be an array of functions'));
65 + if (!tasks.length) return callback();
66 + for (var i = 0, l = tasks.length; i < l; i++) {
67 + (0, _wrapAsync2.default)(tasks[i])(callback);
68 + }
69 +}
70 +module.exports = exports['default'];
...\ No newline at end of file ...\ No newline at end of file
1 +'use strict';
2 +
3 +Object.defineProperty(exports, "__esModule", {
4 + value: true
5 +});
6 +exports.default = reduce;
7 +
8 +var _eachOfSeries = require('./eachOfSeries');
9 +
10 +var _eachOfSeries2 = _interopRequireDefault(_eachOfSeries);
11 +
12 +var _noop = require('lodash/noop');
13 +
14 +var _noop2 = _interopRequireDefault(_noop);
15 +
16 +var _once = require('./internal/once');
17 +
18 +var _once2 = _interopRequireDefault(_once);
19 +
20 +var _wrapAsync = require('./internal/wrapAsync');
21 +
22 +var _wrapAsync2 = _interopRequireDefault(_wrapAsync);
23 +
24 +function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }
25 +
26 +/**
27 + * Reduces `coll` into a single value using an async `iteratee` to return each
28 + * successive step. `memo` is the initial state of the reduction. This function
29 + * only operates in series.
30 + *
31 + * For performance reasons, it may make sense to split a call to this function
32 + * into a parallel map, and then use the normal `Array.prototype.reduce` on the
33 + * results. This function is for situations where each step in the reduction
34 + * needs to be async; if you can get the data before reducing it, then it's
35 + * probably a good idea to do so.
36 + *
37 + * @name reduce
38 + * @static
39 + * @memberOf module:Collections
40 + * @method
41 + * @alias inject
42 + * @alias foldl
43 + * @category Collection
44 + * @param {Array|Iterable|Object} coll - A collection to iterate over.
45 + * @param {*} memo - The initial state of the reduction.
46 + * @param {AsyncFunction} iteratee - A function applied to each item in the
47 + * array to produce the next step in the reduction.
48 + * The `iteratee` should complete with the next state of the reduction.
49 + * If the iteratee complete with an error, the reduction is stopped and the
50 + * main `callback` is immediately called with the error.
51 + * Invoked with (memo, item, callback).
52 + * @param {Function} [callback] - A callback which is called after all the
53 + * `iteratee` functions have finished. Result is the reduced value. Invoked with
54 + * (err, result).
55 + * @example
56 + *
57 + * async.reduce([1,2,3], 0, function(memo, item, callback) {
58 + * // pointless async:
59 + * process.nextTick(function() {
60 + * callback(null, memo + item)
61 + * });
62 + * }, function(err, result) {
63 + * // result is now equal to the last value of memo, which is 6
64 + * });
65 + */
66 +function reduce(coll, memo, iteratee, callback) {
67 + callback = (0, _once2.default)(callback || _noop2.default);
68 + var _iteratee = (0, _wrapAsync2.default)(iteratee);
69 + (0, _eachOfSeries2.default)(coll, function (x, i, callback) {
70 + _iteratee(memo, x, function (err, v) {
71 + memo = v;
72 + callback(err);
73 + });
74 + }, function (err) {
75 + callback(err, memo);
76 + });
77 +}
78 +module.exports = exports['default'];
...\ No newline at end of file ...\ No newline at end of file
1 +'use strict';
2 +
3 +Object.defineProperty(exports, "__esModule", {
4 + value: true
5 +});
6 +exports.default = reduceRight;
7 +
8 +var _reduce = require('./reduce');
9 +
10 +var _reduce2 = _interopRequireDefault(_reduce);
11 +
12 +var _slice = require('./internal/slice');
13 +
14 +var _slice2 = _interopRequireDefault(_slice);
15 +
16 +function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }
17 +
18 +/**
19 + * Same as [`reduce`]{@link module:Collections.reduce}, only operates on `array` in reverse order.
20 + *
21 + * @name reduceRight
22 + * @static
23 + * @memberOf module:Collections
24 + * @method
25 + * @see [async.reduce]{@link module:Collections.reduce}
26 + * @alias foldr
27 + * @category Collection
28 + * @param {Array} array - A collection to iterate over.
29 + * @param {*} memo - The initial state of the reduction.
30 + * @param {AsyncFunction} iteratee - A function applied to each item in the
31 + * array to produce the next step in the reduction.
32 + * The `iteratee` should complete with the next state of the reduction.
33 + * If the iteratee complete with an error, the reduction is stopped and the
34 + * main `callback` is immediately called with the error.
35 + * Invoked with (memo, item, callback).
36 + * @param {Function} [callback] - A callback which is called after all the
37 + * `iteratee` functions have finished. Result is the reduced value. Invoked with
38 + * (err, result).
39 + */
40 +function reduceRight(array, memo, iteratee, callback) {
41 + var reversed = (0, _slice2.default)(array).reverse();
42 + (0, _reduce2.default)(reversed, memo, iteratee, callback);
43 +}
44 +module.exports = exports['default'];
...\ No newline at end of file ...\ No newline at end of file
1 +'use strict';
2 +
3 +Object.defineProperty(exports, "__esModule", {
4 + value: true
5 +});
6 +exports.default = reflect;
7 +
8 +var _initialParams = require('./internal/initialParams');
9 +
10 +var _initialParams2 = _interopRequireDefault(_initialParams);
11 +
12 +var _slice = require('./internal/slice');
13 +
14 +var _slice2 = _interopRequireDefault(_slice);
15 +
16 +var _wrapAsync = require('./internal/wrapAsync');
17 +
18 +var _wrapAsync2 = _interopRequireDefault(_wrapAsync);
19 +
20 +function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }
21 +
22 +/**
23 + * Wraps the async function in another function that always completes with a
24 + * result object, even when it errors.
25 + *
26 + * The result object has either the property `error` or `value`.
27 + *
28 + * @name reflect
29 + * @static
30 + * @memberOf module:Utils
31 + * @method
32 + * @category Util
33 + * @param {AsyncFunction} fn - The async function you want to wrap
34 + * @returns {Function} - A function that always passes null to it's callback as
35 + * the error. The second argument to the callback will be an `object` with
36 + * either an `error` or a `value` property.
37 + * @example
38 + *
39 + * async.parallel([
40 + * async.reflect(function(callback) {
41 + * // do some stuff ...
42 + * callback(null, 'one');
43 + * }),
44 + * async.reflect(function(callback) {
45 + * // do some more stuff but error ...
46 + * callback('bad stuff happened');
47 + * }),
48 + * async.reflect(function(callback) {
49 + * // do some more stuff ...
50 + * callback(null, 'two');
51 + * })
52 + * ],
53 + * // optional callback
54 + * function(err, results) {
55 + * // values
56 + * // results[0].value = 'one'
57 + * // results[1].error = 'bad stuff happened'
58 + * // results[2].value = 'two'
59 + * });
60 + */
61 +function reflect(fn) {
62 + var _fn = (0, _wrapAsync2.default)(fn);
63 + return (0, _initialParams2.default)(function reflectOn(args, reflectCallback) {
64 + args.push(function callback(error, cbArg) {
65 + if (error) {
66 + reflectCallback(null, { error: error });
67 + } else {
68 + var value;
69 + if (arguments.length <= 2) {
70 + value = cbArg;
71 + } else {
72 + value = (0, _slice2.default)(arguments, 1);
73 + }
74 + reflectCallback(null, { value: value });
75 + }
76 + });
77 +
78 + return _fn.apply(this, args);
79 + });
80 +}
81 +module.exports = exports['default'];
...\ No newline at end of file ...\ No newline at end of file
1 +'use strict';
2 +
3 +Object.defineProperty(exports, "__esModule", {
4 + value: true
5 +});
6 +exports.default = reflectAll;
7 +
8 +var _reflect = require('./reflect');
9 +
10 +var _reflect2 = _interopRequireDefault(_reflect);
11 +
12 +var _isArray = require('lodash/isArray');
13 +
14 +var _isArray2 = _interopRequireDefault(_isArray);
15 +
16 +var _arrayMap2 = require('lodash/_arrayMap');
17 +
18 +var _arrayMap3 = _interopRequireDefault(_arrayMap2);
19 +
20 +var _baseForOwn = require('lodash/_baseForOwn');
21 +
22 +var _baseForOwn2 = _interopRequireDefault(_baseForOwn);
23 +
24 +function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }
25 +
26 +/**
27 + * A helper function that wraps an array or an object of functions with `reflect`.
28 + *
29 + * @name reflectAll
30 + * @static
31 + * @memberOf module:Utils
32 + * @method
33 + * @see [async.reflect]{@link module:Utils.reflect}
34 + * @category Util
35 + * @param {Array|Object|Iterable} tasks - The collection of
36 + * [async functions]{@link AsyncFunction} to wrap in `async.reflect`.
37 + * @returns {Array} Returns an array of async functions, each wrapped in
38 + * `async.reflect`
39 + * @example
40 + *
41 + * let tasks = [
42 + * function(callback) {
43 + * setTimeout(function() {
44 + * callback(null, 'one');
45 + * }, 200);
46 + * },
47 + * function(callback) {
48 + * // do some more stuff but error ...
49 + * callback(new Error('bad stuff happened'));
50 + * },
51 + * function(callback) {
52 + * setTimeout(function() {
53 + * callback(null, 'two');
54 + * }, 100);
55 + * }
56 + * ];
57 + *
58 + * async.parallel(async.reflectAll(tasks),
59 + * // optional callback
60 + * function(err, results) {
61 + * // values
62 + * // results[0].value = 'one'
63 + * // results[1].error = Error('bad stuff happened')
64 + * // results[2].value = 'two'
65 + * });
66 + *
67 + * // an example using an object instead of an array
68 + * let tasks = {
69 + * one: function(callback) {
70 + * setTimeout(function() {
71 + * callback(null, 'one');
72 + * }, 200);
73 + * },
74 + * two: function(callback) {
75 + * callback('two');
76 + * },
77 + * three: function(callback) {
78 + * setTimeout(function() {
79 + * callback(null, 'three');
80 + * }, 100);
81 + * }
82 + * };
83 + *
84 + * async.parallel(async.reflectAll(tasks),
85 + * // optional callback
86 + * function(err, results) {
87 + * // values
88 + * // results.one.value = 'one'
89 + * // results.two.error = 'two'
90 + * // results.three.value = 'three'
91 + * });
92 + */
93 +function reflectAll(tasks) {
94 + var results;
95 + if ((0, _isArray2.default)(tasks)) {
96 + results = (0, _arrayMap3.default)(tasks, _reflect2.default);
97 + } else {
98 + results = {};
99 + (0, _baseForOwn2.default)(tasks, function (task, key) {
100 + results[key] = _reflect2.default.call(this, task);
101 + });
102 + }
103 + return results;
104 +}
105 +module.exports = exports['default'];
...\ No newline at end of file ...\ No newline at end of file
1 +'use strict';
2 +
3 +Object.defineProperty(exports, "__esModule", {
4 + value: true
5 +});
6 +
7 +var _reject = require('./internal/reject');
8 +
9 +var _reject2 = _interopRequireDefault(_reject);
10 +
11 +var _doParallel = require('./internal/doParallel');
12 +
13 +var _doParallel2 = _interopRequireDefault(_doParallel);
14 +
15 +function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }
16 +
17 +/**
18 + * The opposite of [`filter`]{@link module:Collections.filter}. Removes values that pass an `async` truth test.
19 + *
20 + * @name reject
21 + * @static
22 + * @memberOf module:Collections
23 + * @method
24 + * @see [async.filter]{@link module:Collections.filter}
25 + * @category Collection
26 + * @param {Array|Iterable|Object} coll - A collection to iterate over.
27 + * @param {Function} iteratee - An async truth test to apply to each item in
28 + * `coll`.
29 + * The should complete with a boolean value as its `result`.
30 + * Invoked with (item, callback).
31 + * @param {Function} [callback] - A callback which is called after all the
32 + * `iteratee` functions have finished. Invoked with (err, results).
33 + * @example
34 + *
35 + * async.reject(['file1','file2','file3'], function(filePath, callback) {
36 + * fs.access(filePath, function(err) {
37 + * callback(null, !err)
38 + * });
39 + * }, function(err, results) {
40 + * // results now equals an array of missing files
41 + * createFiles(results);
42 + * });
43 + */
44 +exports.default = (0, _doParallel2.default)(_reject2.default);
45 +module.exports = exports['default'];
...\ No newline at end of file ...\ No newline at end of file
1 +'use strict';
2 +
3 +Object.defineProperty(exports, "__esModule", {
4 + value: true
5 +});
6 +
7 +var _reject = require('./internal/reject');
8 +
9 +var _reject2 = _interopRequireDefault(_reject);
10 +
11 +var _doParallelLimit = require('./internal/doParallelLimit');
12 +
13 +var _doParallelLimit2 = _interopRequireDefault(_doParallelLimit);
14 +
15 +function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }
16 +
17 +/**
18 + * The same as [`reject`]{@link module:Collections.reject} but runs a maximum of `limit` async operations at a
19 + * time.
20 + *
21 + * @name rejectLimit
22 + * @static
23 + * @memberOf module:Collections
24 + * @method
25 + * @see [async.reject]{@link module:Collections.reject}
26 + * @category Collection
27 + * @param {Array|Iterable|Object} coll - A collection to iterate over.
28 + * @param {number} limit - The maximum number of async operations at a time.
29 + * @param {Function} iteratee - An async truth test to apply to each item in
30 + * `coll`.
31 + * The should complete with a boolean value as its `result`.
32 + * Invoked with (item, callback).
33 + * @param {Function} [callback] - A callback which is called after all the
34 + * `iteratee` functions have finished. Invoked with (err, results).
35 + */
36 +exports.default = (0, _doParallelLimit2.default)(_reject2.default);
37 +module.exports = exports['default'];
...\ No newline at end of file ...\ No newline at end of file
1 +'use strict';
2 +
3 +Object.defineProperty(exports, "__esModule", {
4 + value: true
5 +});
6 +
7 +var _rejectLimit = require('./rejectLimit');
8 +
9 +var _rejectLimit2 = _interopRequireDefault(_rejectLimit);
10 +
11 +var _doLimit = require('./internal/doLimit');
12 +
13 +var _doLimit2 = _interopRequireDefault(_doLimit);
14 +
15 +function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }
16 +
17 +/**
18 + * The same as [`reject`]{@link module:Collections.reject} but runs only a single async operation at a time.
19 + *
20 + * @name rejectSeries
21 + * @static
22 + * @memberOf module:Collections
23 + * @method
24 + * @see [async.reject]{@link module:Collections.reject}
25 + * @category Collection
26 + * @param {Array|Iterable|Object} coll - A collection to iterate over.
27 + * @param {Function} iteratee - An async truth test to apply to each item in
28 + * `coll`.
29 + * The should complete with a boolean value as its `result`.
30 + * Invoked with (item, callback).
31 + * @param {Function} [callback] - A callback which is called after all the
32 + * `iteratee` functions have finished. Invoked with (err, results).
33 + */
34 +exports.default = (0, _doLimit2.default)(_rejectLimit2.default, 1);
35 +module.exports = exports['default'];
...\ No newline at end of file ...\ No newline at end of file
1 +'use strict';
2 +
3 +Object.defineProperty(exports, "__esModule", {
4 + value: true
5 +});
6 +exports.default = retry;
7 +
8 +var _noop = require('lodash/noop');
9 +
10 +var _noop2 = _interopRequireDefault(_noop);
11 +
12 +var _constant = require('lodash/constant');
13 +
14 +var _constant2 = _interopRequireDefault(_constant);
15 +
16 +var _wrapAsync = require('./internal/wrapAsync');
17 +
18 +var _wrapAsync2 = _interopRequireDefault(_wrapAsync);
19 +
20 +function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }
21 +
22 +/**
23 + * Attempts to get a successful response from `task` no more than `times` times
24 + * before returning an error. If the task is successful, the `callback` will be
25 + * passed the result of the successful task. If all attempts fail, the callback
26 + * will be passed the error and result (if any) of the final attempt.
27 + *
28 + * @name retry
29 + * @static
30 + * @memberOf module:ControlFlow
31 + * @method
32 + * @category Control Flow
33 + * @see [async.retryable]{@link module:ControlFlow.retryable}
34 + * @param {Object|number} [opts = {times: 5, interval: 0}| 5] - Can be either an
35 + * object with `times` and `interval` or a number.
36 + * * `times` - The number of attempts to make before giving up. The default
37 + * is `5`.
38 + * * `interval` - The time to wait between retries, in milliseconds. The
39 + * default is `0`. The interval may also be specified as a function of the
40 + * retry count (see example).
41 + * * `errorFilter` - An optional synchronous function that is invoked on
42 + * erroneous result. If it returns `true` the retry attempts will continue;
43 + * if the function returns `false` the retry flow is aborted with the current
44 + * attempt's error and result being returned to the final callback.
45 + * Invoked with (err).
46 + * * If `opts` is a number, the number specifies the number of times to retry,
47 + * with the default interval of `0`.
48 + * @param {AsyncFunction} task - An async function to retry.
49 + * Invoked with (callback).
50 + * @param {Function} [callback] - An optional callback which is called when the
51 + * task has succeeded, or after the final failed attempt. It receives the `err`
52 + * and `result` arguments of the last attempt at completing the `task`. Invoked
53 + * with (err, results).
54 + *
55 + * @example
56 + *
57 + * // The `retry` function can be used as a stand-alone control flow by passing
58 + * // a callback, as shown below:
59 + *
60 + * // try calling apiMethod 3 times
61 + * async.retry(3, apiMethod, function(err, result) {
62 + * // do something with the result
63 + * });
64 + *
65 + * // try calling apiMethod 3 times, waiting 200 ms between each retry
66 + * async.retry({times: 3, interval: 200}, apiMethod, function(err, result) {
67 + * // do something with the result
68 + * });
69 + *
70 + * // try calling apiMethod 10 times with exponential backoff
71 + * // (i.e. intervals of 100, 200, 400, 800, 1600, ... milliseconds)
72 + * async.retry({
73 + * times: 10,
74 + * interval: function(retryCount) {
75 + * return 50 * Math.pow(2, retryCount);
76 + * }
77 + * }, apiMethod, function(err, result) {
78 + * // do something with the result
79 + * });
80 + *
81 + * // try calling apiMethod the default 5 times no delay between each retry
82 + * async.retry(apiMethod, function(err, result) {
83 + * // do something with the result
84 + * });
85 + *
86 + * // try calling apiMethod only when error condition satisfies, all other
87 + * // errors will abort the retry control flow and return to final callback
88 + * async.retry({
89 + * errorFilter: function(err) {
90 + * return err.message === 'Temporary error'; // only retry on a specific error
91 + * }
92 + * }, apiMethod, function(err, result) {
93 + * // do something with the result
94 + * });
95 + *
96 + * // to retry individual methods that are not as reliable within other
97 + * // control flow functions, use the `retryable` wrapper:
98 + * async.auto({
99 + * users: api.getUsers.bind(api),
100 + * payments: async.retryable(3, api.getPayments.bind(api))
101 + * }, function(err, results) {
102 + * // do something with the results
103 + * });
104 + *
105 + */
106 +function retry(opts, task, callback) {
107 + var DEFAULT_TIMES = 5;
108 + var DEFAULT_INTERVAL = 0;
109 +
110 + var options = {
111 + times: DEFAULT_TIMES,
112 + intervalFunc: (0, _constant2.default)(DEFAULT_INTERVAL)
113 + };
114 +
115 + function parseTimes(acc, t) {
116 + if (typeof t === 'object') {
117 + acc.times = +t.times || DEFAULT_TIMES;
118 +
119 + acc.intervalFunc = typeof t.interval === 'function' ? t.interval : (0, _constant2.default)(+t.interval || DEFAULT_INTERVAL);
120 +
121 + acc.errorFilter = t.errorFilter;
122 + } else if (typeof t === 'number' || typeof t === 'string') {
123 + acc.times = +t || DEFAULT_TIMES;
124 + } else {
125 + throw new Error("Invalid arguments for async.retry");
126 + }
127 + }
128 +
129 + if (arguments.length < 3 && typeof opts === 'function') {
130 + callback = task || _noop2.default;
131 + task = opts;
132 + } else {
133 + parseTimes(options, opts);
134 + callback = callback || _noop2.default;
135 + }
136 +
137 + if (typeof task !== 'function') {
138 + throw new Error("Invalid arguments for async.retry");
139 + }
140 +
141 + var _task = (0, _wrapAsync2.default)(task);
142 +
143 + var attempt = 1;
144 + function retryAttempt() {
145 + _task(function (err) {
146 + if (err && attempt++ < options.times && (typeof options.errorFilter != 'function' || options.errorFilter(err))) {
147 + setTimeout(retryAttempt, options.intervalFunc(attempt));
148 + } else {
149 + callback.apply(null, arguments);
150 + }
151 + });
152 + }
153 +
154 + retryAttempt();
155 +}
156 +module.exports = exports['default'];
...\ No newline at end of file ...\ No newline at end of file
1 +'use strict';
2 +
3 +Object.defineProperty(exports, "__esModule", {
4 + value: true
5 +});
6 +
7 +exports.default = function (opts, task) {
8 + if (!task) {
9 + task = opts;
10 + opts = null;
11 + }
12 + var _task = (0, _wrapAsync2.default)(task);
13 + return (0, _initialParams2.default)(function (args, callback) {
14 + function taskFn(cb) {
15 + _task.apply(null, args.concat(cb));
16 + }
17 +
18 + if (opts) (0, _retry2.default)(opts, taskFn, callback);else (0, _retry2.default)(taskFn, callback);
19 + });
20 +};
21 +
22 +var _retry = require('./retry');
23 +
24 +var _retry2 = _interopRequireDefault(_retry);
25 +
26 +var _initialParams = require('./internal/initialParams');
27 +
28 +var _initialParams2 = _interopRequireDefault(_initialParams);
29 +
30 +var _wrapAsync = require('./internal/wrapAsync');
31 +
32 +var _wrapAsync2 = _interopRequireDefault(_wrapAsync);
33 +
34 +function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }
35 +
36 +module.exports = exports['default'];
37 +
38 +/**
39 + * A close relative of [`retry`]{@link module:ControlFlow.retry}. This method
40 + * wraps a task and makes it retryable, rather than immediately calling it
41 + * with retries.
42 + *
43 + * @name retryable
44 + * @static
45 + * @memberOf module:ControlFlow
46 + * @method
47 + * @see [async.retry]{@link module:ControlFlow.retry}
48 + * @category Control Flow
49 + * @param {Object|number} [opts = {times: 5, interval: 0}| 5] - optional
50 + * options, exactly the same as from `retry`
51 + * @param {AsyncFunction} task - the asynchronous function to wrap.
52 + * This function will be passed any arguments passed to the returned wrapper.
53 + * Invoked with (...args, callback).
54 + * @returns {AsyncFunction} The wrapped function, which when invoked, will
55 + * retry on an error, based on the parameters specified in `opts`.
56 + * This function will accept the same parameters as `task`.
57 + * @example
58 + *
59 + * async.auto({
60 + * dep1: async.retryable(3, getFromFlakyService),
61 + * process: ["dep1", async.retryable(3, function (results, cb) {
62 + * maybeProcessData(results.dep1, cb);
63 + * })]
64 + * }, callback);
65 + */
...\ No newline at end of file ...\ No newline at end of file
1 +'use strict';
2 +
3 +Object.defineProperty(exports, "__esModule", {
4 + value: true
5 +});
6 +
7 +var _filter = require('./internal/filter');
8 +
9 +var _filter2 = _interopRequireDefault(_filter);
10 +
11 +var _doParallel = require('./internal/doParallel');
12 +
13 +var _doParallel2 = _interopRequireDefault(_doParallel);
14 +
15 +function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }
16 +
17 +/**
18 + * Returns a new array of all the values in `coll` which pass an async truth
19 + * test. This operation is performed in parallel, but the results array will be
20 + * in the same order as the original.
21 + *
22 + * @name filter
23 + * @static
24 + * @memberOf module:Collections
25 + * @method
26 + * @alias select
27 + * @category Collection
28 + * @param {Array|Iterable|Object} coll - A collection to iterate over.
29 + * @param {Function} iteratee - A truth test to apply to each item in `coll`.
30 + * The `iteratee` is passed a `callback(err, truthValue)`, which must be called
31 + * with a boolean argument once it has completed. Invoked with (item, callback).
32 + * @param {Function} [callback] - A callback which is called after all the
33 + * `iteratee` functions have finished. Invoked with (err, results).
34 + * @example
35 + *
36 + * async.filter(['file1','file2','file3'], function(filePath, callback) {
37 + * fs.access(filePath, function(err) {
38 + * callback(null, !err)
39 + * });
40 + * }, function(err, results) {
41 + * // results now equals an array of the existing files
42 + * });
43 + */
44 +exports.default = (0, _doParallel2.default)(_filter2.default);
45 +module.exports = exports['default'];
...\ No newline at end of file ...\ No newline at end of file
1 +'use strict';
2 +
3 +Object.defineProperty(exports, "__esModule", {
4 + value: true
5 +});
6 +
7 +var _filter = require('./internal/filter');
8 +
9 +var _filter2 = _interopRequireDefault(_filter);
10 +
11 +var _doParallelLimit = require('./internal/doParallelLimit');
12 +
13 +var _doParallelLimit2 = _interopRequireDefault(_doParallelLimit);
14 +
15 +function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }
16 +
17 +/**
18 + * The same as [`filter`]{@link module:Collections.filter} but runs a maximum of `limit` async operations at a
19 + * time.
20 + *
21 + * @name filterLimit
22 + * @static
23 + * @memberOf module:Collections
24 + * @method
25 + * @see [async.filter]{@link module:Collections.filter}
26 + * @alias selectLimit
27 + * @category Collection
28 + * @param {Array|Iterable|Object} coll - A collection to iterate over.
29 + * @param {number} limit - The maximum number of async operations at a time.
30 + * @param {Function} iteratee - A truth test to apply to each item in `coll`.
31 + * The `iteratee` is passed a `callback(err, truthValue)`, which must be called
32 + * with a boolean argument once it has completed. Invoked with (item, callback).
33 + * @param {Function} [callback] - A callback which is called after all the
34 + * `iteratee` functions have finished. Invoked with (err, results).
35 + */
36 +exports.default = (0, _doParallelLimit2.default)(_filter2.default);
37 +module.exports = exports['default'];
...\ No newline at end of file ...\ No newline at end of file
1 +'use strict';
2 +
3 +Object.defineProperty(exports, "__esModule", {
4 + value: true
5 +});
6 +
7 +var _filterLimit = require('./filterLimit');
8 +
9 +var _filterLimit2 = _interopRequireDefault(_filterLimit);
10 +
11 +var _doLimit = require('./internal/doLimit');
12 +
13 +var _doLimit2 = _interopRequireDefault(_doLimit);
14 +
15 +function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }
16 +
17 +/**
18 + * The same as [`filter`]{@link module:Collections.filter} but runs only a single async operation at a time.
19 + *
20 + * @name filterSeries
21 + * @static
22 + * @memberOf module:Collections
23 + * @method
24 + * @see [async.filter]{@link module:Collections.filter}
25 + * @alias selectSeries
26 + * @category Collection
27 + * @param {Array|Iterable|Object} coll - A collection to iterate over.
28 + * @param {Function} iteratee - A truth test to apply to each item in `coll`.
29 + * The `iteratee` is passed a `callback(err, truthValue)`, which must be called
30 + * with a boolean argument once it has completed. Invoked with (item, callback).
31 + * @param {Function} [callback] - A callback which is called after all the
32 + * `iteratee` functions have finished. Invoked with (err, results)
33 + */
34 +exports.default = (0, _doLimit2.default)(_filterLimit2.default, 1);
35 +module.exports = exports['default'];
...\ No newline at end of file ...\ No newline at end of file
1 +'use strict';
2 +
3 +Object.defineProperty(exports, "__esModule", {
4 + value: true
5 +});
6 +exports.default = seq;
7 +
8 +var _noop = require('lodash/noop');
9 +
10 +var _noop2 = _interopRequireDefault(_noop);
11 +
12 +var _slice = require('./internal/slice');
13 +
14 +var _slice2 = _interopRequireDefault(_slice);
15 +
16 +var _reduce = require('./reduce');
17 +
18 +var _reduce2 = _interopRequireDefault(_reduce);
19 +
20 +var _wrapAsync = require('./internal/wrapAsync');
21 +
22 +var _wrapAsync2 = _interopRequireDefault(_wrapAsync);
23 +
24 +var _arrayMap = require('lodash/_arrayMap');
25 +
26 +var _arrayMap2 = _interopRequireDefault(_arrayMap);
27 +
28 +function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }
29 +
30 +/**
31 + * Version of the compose function that is more natural to read. Each function
32 + * consumes the return value of the previous function. It is the equivalent of
33 + * [compose]{@link module:ControlFlow.compose} with the arguments reversed.
34 + *
35 + * Each function is executed with the `this` binding of the composed function.
36 + *
37 + * @name seq
38 + * @static
39 + * @memberOf module:ControlFlow
40 + * @method
41 + * @see [async.compose]{@link module:ControlFlow.compose}
42 + * @category Control Flow
43 + * @param {...AsyncFunction} functions - the asynchronous functions to compose
44 + * @returns {Function} a function that composes the `functions` in order
45 + * @example
46 + *
47 + * // Requires lodash (or underscore), express3 and dresende's orm2.
48 + * // Part of an app, that fetches cats of the logged user.
49 + * // This example uses `seq` function to avoid overnesting and error
50 + * // handling clutter.
51 + * app.get('/cats', function(request, response) {
52 + * var User = request.models.User;
53 + * async.seq(
54 + * _.bind(User.get, User), // 'User.get' has signature (id, callback(err, data))
55 + * function(user, fn) {
56 + * user.getCats(fn); // 'getCats' has signature (callback(err, data))
57 + * }
58 + * )(req.session.user_id, function (err, cats) {
59 + * if (err) {
60 + * console.error(err);
61 + * response.json({ status: 'error', message: err.message });
62 + * } else {
63 + * response.json({ status: 'ok', message: 'Cats found', data: cats });
64 + * }
65 + * });
66 + * });
67 + */
68 +function seq() /*...functions*/{
69 + var _functions = (0, _arrayMap2.default)(arguments, _wrapAsync2.default);
70 + return function () /*...args*/{
71 + var args = (0, _slice2.default)(arguments);
72 + var that = this;
73 +
74 + var cb = args[args.length - 1];
75 + if (typeof cb == 'function') {
76 + args.pop();
77 + } else {
78 + cb = _noop2.default;
79 + }
80 +
81 + (0, _reduce2.default)(_functions, args, function (newargs, fn, cb) {
82 + fn.apply(that, newargs.concat(function (err /*, ...nextargs*/) {
83 + var nextargs = (0, _slice2.default)(arguments, 1);
84 + cb(err, nextargs);
85 + }));
86 + }, function (err, results) {
87 + cb.apply(that, [err].concat(results));
88 + });
89 + };
90 +}
91 +module.exports = exports['default'];
...\ No newline at end of file ...\ No newline at end of file
1 +'use strict';
2 +
3 +Object.defineProperty(exports, "__esModule", {
4 + value: true
5 +});
6 +exports.default = series;
7 +
8 +var _parallel = require('./internal/parallel');
9 +
10 +var _parallel2 = _interopRequireDefault(_parallel);
11 +
12 +var _eachOfSeries = require('./eachOfSeries');
13 +
14 +var _eachOfSeries2 = _interopRequireDefault(_eachOfSeries);
15 +
16 +function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }
17 +
18 +/**
19 + * Run the functions in the `tasks` collection in series, each one running once
20 + * the previous function has completed. If any functions in the series pass an
21 + * error to its callback, no more functions are run, and `callback` is
22 + * immediately called with the value of the error. Otherwise, `callback`
23 + * receives an array of results when `tasks` have completed.
24 + *
25 + * It is also possible to use an object instead of an array. Each property will
26 + * be run as a function, and the results will be passed to the final `callback`
27 + * as an object instead of an array. This can be a more readable way of handling
28 + * results from {@link async.series}.
29 + *
30 + * **Note** that while many implementations preserve the order of object
31 + * properties, the [ECMAScript Language Specification](http://www.ecma-international.org/ecma-262/5.1/#sec-8.6)
32 + * explicitly states that
33 + *
34 + * > The mechanics and order of enumerating the properties is not specified.
35 + *
36 + * So if you rely on the order in which your series of functions are executed,
37 + * and want this to work on all platforms, consider using an array.
38 + *
39 + * @name series
40 + * @static
41 + * @memberOf module:ControlFlow
42 + * @method
43 + * @category Control Flow
44 + * @param {Array|Iterable|Object} tasks - A collection containing
45 + * [async functions]{@link AsyncFunction} to run in series.
46 + * Each function can complete with any number of optional `result` values.
47 + * @param {Function} [callback] - An optional callback to run once all the
48 + * functions have completed. This function gets a results array (or object)
49 + * containing all the result arguments passed to the `task` callbacks. Invoked
50 + * with (err, result).
51 + * @example
52 + * async.series([
53 + * function(callback) {
54 + * // do some stuff ...
55 + * callback(null, 'one');
56 + * },
57 + * function(callback) {
58 + * // do some more stuff ...
59 + * callback(null, 'two');
60 + * }
61 + * ],
62 + * // optional callback
63 + * function(err, results) {
64 + * // results is now equal to ['one', 'two']
65 + * });
66 + *
67 + * async.series({
68 + * one: function(callback) {
69 + * setTimeout(function() {
70 + * callback(null, 1);
71 + * }, 200);
72 + * },
73 + * two: function(callback){
74 + * setTimeout(function() {
75 + * callback(null, 2);
76 + * }, 100);
77 + * }
78 + * }, function(err, results) {
79 + * // results is now equal to: {one: 1, two: 2}
80 + * });
81 + */
82 +function series(tasks, callback) {
83 + (0, _parallel2.default)(_eachOfSeries2.default, tasks, callback);
84 +}
85 +module.exports = exports['default'];
...\ No newline at end of file ...\ No newline at end of file
1 +'use strict';
2 +
3 +Object.defineProperty(exports, "__esModule", {
4 + value: true
5 +});
6 +
7 +var _setImmediate = require('./internal/setImmediate');
8 +
9 +var _setImmediate2 = _interopRequireDefault(_setImmediate);
10 +
11 +function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }
12 +
13 +/**
14 + * Calls `callback` on a later loop around the event loop. In Node.js this just
15 + * calls `setImmediate`. In the browser it will use `setImmediate` if
16 + * available, otherwise `setTimeout(callback, 0)`, which means other higher
17 + * priority events may precede the execution of `callback`.
18 + *
19 + * This is used internally for browser-compatibility purposes.
20 + *
21 + * @name setImmediate
22 + * @static
23 + * @memberOf module:Utils
24 + * @method
25 + * @see [async.nextTick]{@link module:Utils.nextTick}
26 + * @category Util
27 + * @param {Function} callback - The function to call on a later loop around
28 + * the event loop. Invoked with (args...).
29 + * @param {...*} args... - any number of additional arguments to pass to the
30 + * callback on the next tick.
31 + * @example
32 + *
33 + * var call_order = [];
34 + * async.nextTick(function() {
35 + * call_order.push('two');
36 + * // call_order now equals ['one','two']
37 + * });
38 + * call_order.push('one');
39 + *
40 + * async.setImmediate(function (a, b, c) {
41 + * // a, b, and c equal 1, 2, and 3
42 + * }, 1, 2, 3);
43 + */
44 +exports.default = _setImmediate2.default;
45 +module.exports = exports['default'];
...\ No newline at end of file ...\ No newline at end of file
1 +'use strict';
2 +
3 +Object.defineProperty(exports, "__esModule", {
4 + value: true
5 +});
6 +
7 +var _createTester = require('./internal/createTester');
8 +
9 +var _createTester2 = _interopRequireDefault(_createTester);
10 +
11 +var _doParallel = require('./internal/doParallel');
12 +
13 +var _doParallel2 = _interopRequireDefault(_doParallel);
14 +
15 +var _identity = require('lodash/identity');
16 +
17 +var _identity2 = _interopRequireDefault(_identity);
18 +
19 +function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }
20 +
21 +/**
22 + * Returns `true` if at least one element in the `coll` satisfies an async test.
23 + * If any iteratee call returns `true`, the main `callback` is immediately
24 + * called.
25 + *
26 + * @name some
27 + * @static
28 + * @memberOf module:Collections
29 + * @method
30 + * @alias any
31 + * @category Collection
32 + * @param {Array|Iterable|Object} coll - A collection to iterate over.
33 + * @param {AsyncFunction} iteratee - An async truth test to apply to each item
34 + * in the collections in parallel.
35 + * The iteratee should complete with a boolean `result` value.
36 + * Invoked with (item, callback).
37 + * @param {Function} [callback] - A callback which is called as soon as any
38 + * iteratee returns `true`, or after all the iteratee functions have finished.
39 + * Result will be either `true` or `false` depending on the values of the async
40 + * tests. Invoked with (err, result).
41 + * @example
42 + *
43 + * async.some(['file1','file2','file3'], function(filePath, callback) {
44 + * fs.access(filePath, function(err) {
45 + * callback(null, !err)
46 + * });
47 + * }, function(err, result) {
48 + * // if result is true then at least one of the files exists
49 + * });
50 + */
51 +exports.default = (0, _doParallel2.default)((0, _createTester2.default)(Boolean, _identity2.default));
52 +module.exports = exports['default'];
...\ No newline at end of file ...\ No newline at end of file
1 +'use strict';
2 +
3 +Object.defineProperty(exports, "__esModule", {
4 + value: true
5 +});
6 +
7 +var _createTester = require('./internal/createTester');
8 +
9 +var _createTester2 = _interopRequireDefault(_createTester);
10 +
11 +var _doParallelLimit = require('./internal/doParallelLimit');
12 +
13 +var _doParallelLimit2 = _interopRequireDefault(_doParallelLimit);
14 +
15 +var _identity = require('lodash/identity');
16 +
17 +var _identity2 = _interopRequireDefault(_identity);
18 +
19 +function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }
20 +
21 +/**
22 + * The same as [`some`]{@link module:Collections.some} but runs a maximum of `limit` async operations at a time.
23 + *
24 + * @name someLimit
25 + * @static
26 + * @memberOf module:Collections
27 + * @method
28 + * @see [async.some]{@link module:Collections.some}
29 + * @alias anyLimit
30 + * @category Collection
31 + * @param {Array|Iterable|Object} coll - A collection to iterate over.
32 + * @param {number} limit - The maximum number of async operations at a time.
33 + * @param {AsyncFunction} iteratee - An async truth test to apply to each item
34 + * in the collections in parallel.
35 + * The iteratee should complete with a boolean `result` value.
36 + * Invoked with (item, callback).
37 + * @param {Function} [callback] - A callback which is called as soon as any
38 + * iteratee returns `true`, or after all the iteratee functions have finished.
39 + * Result will be either `true` or `false` depending on the values of the async
40 + * tests. Invoked with (err, result).
41 + */
42 +exports.default = (0, _doParallelLimit2.default)((0, _createTester2.default)(Boolean, _identity2.default));
43 +module.exports = exports['default'];
...\ No newline at end of file ...\ No newline at end of file
1 +'use strict';
2 +
3 +Object.defineProperty(exports, "__esModule", {
4 + value: true
5 +});
6 +
7 +var _someLimit = require('./someLimit');
8 +
9 +var _someLimit2 = _interopRequireDefault(_someLimit);
10 +
11 +var _doLimit = require('./internal/doLimit');
12 +
13 +var _doLimit2 = _interopRequireDefault(_doLimit);
14 +
15 +function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }
16 +
17 +/**
18 + * The same as [`some`]{@link module:Collections.some} but runs only a single async operation at a time.
19 + *
20 + * @name someSeries
21 + * @static
22 + * @memberOf module:Collections
23 + * @method
24 + * @see [async.some]{@link module:Collections.some}
25 + * @alias anySeries
26 + * @category Collection
27 + * @param {Array|Iterable|Object} coll - A collection to iterate over.
28 + * @param {AsyncFunction} iteratee - An async truth test to apply to each item
29 + * in the collections in series.
30 + * The iteratee should complete with a boolean `result` value.
31 + * Invoked with (item, callback).
32 + * @param {Function} [callback] - A callback which is called as soon as any
33 + * iteratee returns `true`, or after all the iteratee functions have finished.
34 + * Result will be either `true` or `false` depending on the values of the async
35 + * tests. Invoked with (err, result).
36 + */
37 +exports.default = (0, _doLimit2.default)(_someLimit2.default, 1);
38 +module.exports = exports['default'];
...\ No newline at end of file ...\ No newline at end of file
1 +'use strict';
2 +
3 +Object.defineProperty(exports, "__esModule", {
4 + value: true
5 +});
6 +exports.default = sortBy;
7 +
8 +var _arrayMap = require('lodash/_arrayMap');
9 +
10 +var _arrayMap2 = _interopRequireDefault(_arrayMap);
11 +
12 +var _baseProperty = require('lodash/_baseProperty');
13 +
14 +var _baseProperty2 = _interopRequireDefault(_baseProperty);
15 +
16 +var _map = require('./map');
17 +
18 +var _map2 = _interopRequireDefault(_map);
19 +
20 +var _wrapAsync = require('./internal/wrapAsync');
21 +
22 +var _wrapAsync2 = _interopRequireDefault(_wrapAsync);
23 +
24 +function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }
25 +
26 +/**
27 + * Sorts a list by the results of running each `coll` value through an async
28 + * `iteratee`.
29 + *
30 + * @name sortBy
31 + * @static
32 + * @memberOf module:Collections
33 + * @method
34 + * @category Collection
35 + * @param {Array|Iterable|Object} coll - A collection to iterate over.
36 + * @param {AsyncFunction} iteratee - An async function to apply to each item in
37 + * `coll`.
38 + * The iteratee should complete with a value to use as the sort criteria as
39 + * its `result`.
40 + * Invoked with (item, callback).
41 + * @param {Function} callback - A callback which is called after all the
42 + * `iteratee` functions have finished, or an error occurs. Results is the items
43 + * from the original `coll` sorted by the values returned by the `iteratee`
44 + * calls. Invoked with (err, results).
45 + * @example
46 + *
47 + * async.sortBy(['file1','file2','file3'], function(file, callback) {
48 + * fs.stat(file, function(err, stats) {
49 + * callback(err, stats.mtime);
50 + * });
51 + * }, function(err, results) {
52 + * // results is now the original array of files sorted by
53 + * // modified date
54 + * });
55 + *
56 + * // By modifying the callback parameter the
57 + * // sorting order can be influenced:
58 + *
59 + * // ascending order
60 + * async.sortBy([1,9,3,5], function(x, callback) {
61 + * callback(null, x);
62 + * }, function(err,result) {
63 + * // result callback
64 + * });
65 + *
66 + * // descending order
67 + * async.sortBy([1,9,3,5], function(x, callback) {
68 + * callback(null, x*-1); //<- x*-1 instead of x, turns the order around
69 + * }, function(err,result) {
70 + * // result callback
71 + * });
72 + */
73 +function sortBy(coll, iteratee, callback) {
74 + var _iteratee = (0, _wrapAsync2.default)(iteratee);
75 + (0, _map2.default)(coll, function (x, callback) {
76 + _iteratee(x, function (err, criteria) {
77 + if (err) return callback(err);
78 + callback(null, { value: x, criteria: criteria });
79 + });
80 + }, function (err, results) {
81 + if (err) return callback(err);
82 + callback(null, (0, _arrayMap2.default)(results.sort(comparator), (0, _baseProperty2.default)('value')));
83 + });
84 +
85 + function comparator(left, right) {
86 + var a = left.criteria,
87 + b = right.criteria;
88 + return a < b ? -1 : a > b ? 1 : 0;
89 + }
90 +}
91 +module.exports = exports['default'];
...\ No newline at end of file ...\ No newline at end of file
1 +'use strict';
2 +
3 +Object.defineProperty(exports, "__esModule", {
4 + value: true
5 +});
6 +exports.default = timeout;
7 +
8 +var _initialParams = require('./internal/initialParams');
9 +
10 +var _initialParams2 = _interopRequireDefault(_initialParams);
11 +
12 +var _wrapAsync = require('./internal/wrapAsync');
13 +
14 +var _wrapAsync2 = _interopRequireDefault(_wrapAsync);
15 +
16 +function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }
17 +
18 +/**
19 + * Sets a time limit on an asynchronous function. If the function does not call
20 + * its callback within the specified milliseconds, it will be called with a
21 + * timeout error. The code property for the error object will be `'ETIMEDOUT'`.
22 + *
23 + * @name timeout
24 + * @static
25 + * @memberOf module:Utils
26 + * @method
27 + * @category Util
28 + * @param {AsyncFunction} asyncFn - The async function to limit in time.
29 + * @param {number} milliseconds - The specified time limit.
30 + * @param {*} [info] - Any variable you want attached (`string`, `object`, etc)
31 + * to timeout Error for more information..
32 + * @returns {AsyncFunction} Returns a wrapped function that can be used with any
33 + * of the control flow functions.
34 + * Invoke this function with the same parameters as you would `asyncFunc`.
35 + * @example
36 + *
37 + * function myFunction(foo, callback) {
38 + * doAsyncTask(foo, function(err, data) {
39 + * // handle errors
40 + * if (err) return callback(err);
41 + *
42 + * // do some stuff ...
43 + *
44 + * // return processed data
45 + * return callback(null, data);
46 + * });
47 + * }
48 + *
49 + * var wrapped = async.timeout(myFunction, 1000);
50 + *
51 + * // call `wrapped` as you would `myFunction`
52 + * wrapped({ bar: 'bar' }, function(err, data) {
53 + * // if `myFunction` takes < 1000 ms to execute, `err`
54 + * // and `data` will have their expected values
55 + *
56 + * // else `err` will be an Error with the code 'ETIMEDOUT'
57 + * });
58 + */
59 +function timeout(asyncFn, milliseconds, info) {
60 + var fn = (0, _wrapAsync2.default)(asyncFn);
61 +
62 + return (0, _initialParams2.default)(function (args, callback) {
63 + var timedOut = false;
64 + var timer;
65 +
66 + function timeoutCallback() {
67 + var name = asyncFn.name || 'anonymous';
68 + var error = new Error('Callback function "' + name + '" timed out.');
69 + error.code = 'ETIMEDOUT';
70 + if (info) {
71 + error.info = info;
72 + }
73 + timedOut = true;
74 + callback(error);
75 + }
76 +
77 + args.push(function () {
78 + if (!timedOut) {
79 + callback.apply(null, arguments);
80 + clearTimeout(timer);
81 + }
82 + });
83 +
84 + // setup timer and call original function
85 + timer = setTimeout(timeoutCallback, milliseconds);
86 + fn.apply(null, args);
87 + });
88 +}
89 +module.exports = exports['default'];
...\ No newline at end of file ...\ No newline at end of file
1 +'use strict';
2 +
3 +Object.defineProperty(exports, "__esModule", {
4 + value: true
5 +});
6 +
7 +var _timesLimit = require('./timesLimit');
8 +
9 +var _timesLimit2 = _interopRequireDefault(_timesLimit);
10 +
11 +var _doLimit = require('./internal/doLimit');
12 +
13 +var _doLimit2 = _interopRequireDefault(_doLimit);
14 +
15 +function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }
16 +
17 +/**
18 + * Calls the `iteratee` function `n` times, and accumulates results in the same
19 + * manner you would use with [map]{@link module:Collections.map}.
20 + *
21 + * @name times
22 + * @static
23 + * @memberOf module:ControlFlow
24 + * @method
25 + * @see [async.map]{@link module:Collections.map}
26 + * @category Control Flow
27 + * @param {number} n - The number of times to run the function.
28 + * @param {AsyncFunction} iteratee - The async function to call `n` times.
29 + * Invoked with the iteration index and a callback: (n, next).
30 + * @param {Function} callback - see {@link module:Collections.map}.
31 + * @example
32 + *
33 + * // Pretend this is some complicated async factory
34 + * var createUser = function(id, callback) {
35 + * callback(null, {
36 + * id: 'user' + id
37 + * });
38 + * };
39 + *
40 + * // generate 5 users
41 + * async.times(5, function(n, next) {
42 + * createUser(n, function(err, user) {
43 + * next(err, user);
44 + * });
45 + * }, function(err, users) {
46 + * // we should now have 5 users
47 + * });
48 + */
49 +exports.default = (0, _doLimit2.default)(_timesLimit2.default, Infinity);
50 +module.exports = exports['default'];
...\ No newline at end of file ...\ No newline at end of file
1 +'use strict';
2 +
3 +Object.defineProperty(exports, "__esModule", {
4 + value: true
5 +});
6 +exports.default = timeLimit;
7 +
8 +var _mapLimit = require('./mapLimit');
9 +
10 +var _mapLimit2 = _interopRequireDefault(_mapLimit);
11 +
12 +var _baseRange = require('lodash/_baseRange');
13 +
14 +var _baseRange2 = _interopRequireDefault(_baseRange);
15 +
16 +var _wrapAsync = require('./internal/wrapAsync');
17 +
18 +var _wrapAsync2 = _interopRequireDefault(_wrapAsync);
19 +
20 +function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }
21 +
22 +/**
23 + * The same as [times]{@link module:ControlFlow.times} but runs a maximum of `limit` async operations at a
24 + * time.
25 + *
26 + * @name timesLimit
27 + * @static
28 + * @memberOf module:ControlFlow
29 + * @method
30 + * @see [async.times]{@link module:ControlFlow.times}
31 + * @category Control Flow
32 + * @param {number} count - The number of times to run the function.
33 + * @param {number} limit - The maximum number of async operations at a time.
34 + * @param {AsyncFunction} iteratee - The async function to call `n` times.
35 + * Invoked with the iteration index and a callback: (n, next).
36 + * @param {Function} callback - see [async.map]{@link module:Collections.map}.
37 + */
38 +function timeLimit(count, limit, iteratee, callback) {
39 + var _iteratee = (0, _wrapAsync2.default)(iteratee);
40 + (0, _mapLimit2.default)((0, _baseRange2.default)(0, count, 1), limit, _iteratee, callback);
41 +}
42 +module.exports = exports['default'];
...\ No newline at end of file ...\ No newline at end of file
1 +'use strict';
2 +
3 +Object.defineProperty(exports, "__esModule", {
4 + value: true
5 +});
6 +
7 +var _timesLimit = require('./timesLimit');
8 +
9 +var _timesLimit2 = _interopRequireDefault(_timesLimit);
10 +
11 +var _doLimit = require('./internal/doLimit');
12 +
13 +var _doLimit2 = _interopRequireDefault(_doLimit);
14 +
15 +function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }
16 +
17 +/**
18 + * The same as [times]{@link module:ControlFlow.times} but runs only a single async operation at a time.
19 + *
20 + * @name timesSeries
21 + * @static
22 + * @memberOf module:ControlFlow
23 + * @method
24 + * @see [async.times]{@link module:ControlFlow.times}
25 + * @category Control Flow
26 + * @param {number} n - The number of times to run the function.
27 + * @param {AsyncFunction} iteratee - The async function to call `n` times.
28 + * Invoked with the iteration index and a callback: (n, next).
29 + * @param {Function} callback - see {@link module:Collections.map}.
30 + */
31 +exports.default = (0, _doLimit2.default)(_timesLimit2.default, 1);
32 +module.exports = exports['default'];
...\ No newline at end of file ...\ No newline at end of file
1 +'use strict';
2 +
3 +Object.defineProperty(exports, "__esModule", {
4 + value: true
5 +});
6 +exports.default = transform;
7 +
8 +var _isArray = require('lodash/isArray');
9 +
10 +var _isArray2 = _interopRequireDefault(_isArray);
11 +
12 +var _noop = require('lodash/noop');
13 +
14 +var _noop2 = _interopRequireDefault(_noop);
15 +
16 +var _eachOf = require('./eachOf');
17 +
18 +var _eachOf2 = _interopRequireDefault(_eachOf);
19 +
20 +var _once = require('./internal/once');
21 +
22 +var _once2 = _interopRequireDefault(_once);
23 +
24 +var _wrapAsync = require('./internal/wrapAsync');
25 +
26 +var _wrapAsync2 = _interopRequireDefault(_wrapAsync);
27 +
28 +function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }
29 +
30 +/**
31 + * A relative of `reduce`. Takes an Object or Array, and iterates over each
32 + * element in series, each step potentially mutating an `accumulator` value.
33 + * The type of the accumulator defaults to the type of collection passed in.
34 + *
35 + * @name transform
36 + * @static
37 + * @memberOf module:Collections
38 + * @method
39 + * @category Collection
40 + * @param {Array|Iterable|Object} coll - A collection to iterate over.
41 + * @param {*} [accumulator] - The initial state of the transform. If omitted,
42 + * it will default to an empty Object or Array, depending on the type of `coll`
43 + * @param {AsyncFunction} iteratee - A function applied to each item in the
44 + * collection that potentially modifies the accumulator.
45 + * Invoked with (accumulator, item, key, callback).
46 + * @param {Function} [callback] - A callback which is called after all the
47 + * `iteratee` functions have finished. Result is the transformed accumulator.
48 + * Invoked with (err, result).
49 + * @example
50 + *
51 + * async.transform([1,2,3], function(acc, item, index, callback) {
52 + * // pointless async:
53 + * process.nextTick(function() {
54 + * acc.push(item * 2)
55 + * callback(null)
56 + * });
57 + * }, function(err, result) {
58 + * // result is now equal to [2, 4, 6]
59 + * });
60 + *
61 + * @example
62 + *
63 + * async.transform({a: 1, b: 2, c: 3}, function (obj, val, key, callback) {
64 + * setImmediate(function () {
65 + * obj[key] = val * 2;
66 + * callback();
67 + * })
68 + * }, function (err, result) {
69 + * // result is equal to {a: 2, b: 4, c: 6}
70 + * })
71 + */
72 +function transform(coll, accumulator, iteratee, callback) {
73 + if (arguments.length <= 3) {
74 + callback = iteratee;
75 + iteratee = accumulator;
76 + accumulator = (0, _isArray2.default)(coll) ? [] : {};
77 + }
78 + callback = (0, _once2.default)(callback || _noop2.default);
79 + var _iteratee = (0, _wrapAsync2.default)(iteratee);
80 +
81 + (0, _eachOf2.default)(coll, function (v, k, cb) {
82 + _iteratee(accumulator, v, k, cb);
83 + }, function (err) {
84 + callback(err, accumulator);
85 + });
86 +}
87 +module.exports = exports['default'];
...\ No newline at end of file ...\ No newline at end of file
1 +'use strict';
2 +
3 +Object.defineProperty(exports, "__esModule", {
4 + value: true
5 +});
6 +exports.default = tryEach;
7 +
8 +var _noop = require('lodash/noop');
9 +
10 +var _noop2 = _interopRequireDefault(_noop);
11 +
12 +var _eachSeries = require('./eachSeries');
13 +
14 +var _eachSeries2 = _interopRequireDefault(_eachSeries);
15 +
16 +var _wrapAsync = require('./internal/wrapAsync');
17 +
18 +var _wrapAsync2 = _interopRequireDefault(_wrapAsync);
19 +
20 +var _slice = require('./internal/slice');
21 +
22 +var _slice2 = _interopRequireDefault(_slice);
23 +
24 +function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }
25 +
26 +/**
27 + * It runs each task in series but stops whenever any of the functions were
28 + * successful. If one of the tasks were successful, the `callback` will be
29 + * passed the result of the successful task. If all tasks fail, the callback
30 + * will be passed the error and result (if any) of the final attempt.
31 + *
32 + * @name tryEach
33 + * @static
34 + * @memberOf module:ControlFlow
35 + * @method
36 + * @category Control Flow
37 + * @param {Array|Iterable|Object} tasks - A collection containing functions to
38 + * run, each function is passed a `callback(err, result)` it must call on
39 + * completion with an error `err` (which can be `null`) and an optional `result`
40 + * value.
41 + * @param {Function} [callback] - An optional callback which is called when one
42 + * of the tasks has succeeded, or all have failed. It receives the `err` and
43 + * `result` arguments of the last attempt at completing the `task`. Invoked with
44 + * (err, results).
45 + * @example
46 + * async.tryEach([
47 + * function getDataFromFirstWebsite(callback) {
48 + * // Try getting the data from the first website
49 + * callback(err, data);
50 + * },
51 + * function getDataFromSecondWebsite(callback) {
52 + * // First website failed,
53 + * // Try getting the data from the backup website
54 + * callback(err, data);
55 + * }
56 + * ],
57 + * // optional callback
58 + * function(err, results) {
59 + * Now do something with the data.
60 + * });
61 + *
62 + */
63 +function tryEach(tasks, callback) {
64 + var error = null;
65 + var result;
66 + callback = callback || _noop2.default;
67 + (0, _eachSeries2.default)(tasks, function (task, callback) {
68 + (0, _wrapAsync2.default)(task)(function (err, res /*, ...args*/) {
69 + if (arguments.length > 2) {
70 + result = (0, _slice2.default)(arguments, 1);
71 + } else {
72 + result = res;
73 + }
74 + error = err;
75 + callback(!err);
76 + });
77 + }, function () {
78 + callback(error, result);
79 + });
80 +}
81 +module.exports = exports['default'];
...\ No newline at end of file ...\ No newline at end of file
1 +"use strict";
2 +
3 +Object.defineProperty(exports, "__esModule", {
4 + value: true
5 +});
6 +exports.default = unmemoize;
7 +/**
8 + * Undoes a [memoize]{@link module:Utils.memoize}d function, reverting it to the original,
9 + * unmemoized form. Handy for testing.
10 + *
11 + * @name unmemoize
12 + * @static
13 + * @memberOf module:Utils
14 + * @method
15 + * @see [async.memoize]{@link module:Utils.memoize}
16 + * @category Util
17 + * @param {AsyncFunction} fn - the memoized function
18 + * @returns {AsyncFunction} a function that calls the original unmemoized function
19 + */
20 +function unmemoize(fn) {
21 + return function () {
22 + return (fn.unmemoized || fn).apply(null, arguments);
23 + };
24 +}
25 +module.exports = exports["default"];
...\ No newline at end of file ...\ No newline at end of file
1 +'use strict';
2 +
3 +Object.defineProperty(exports, "__esModule", {
4 + value: true
5 +});
6 +exports.default = until;
7 +
8 +var _whilst = require('./whilst');
9 +
10 +var _whilst2 = _interopRequireDefault(_whilst);
11 +
12 +function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }
13 +
14 +/**
15 + * Repeatedly call `iteratee` until `test` returns `true`. Calls `callback` when
16 + * stopped, or an error occurs. `callback` will be passed an error and any
17 + * arguments passed to the final `iteratee`'s callback.
18 + *
19 + * The inverse of [whilst]{@link module:ControlFlow.whilst}.
20 + *
21 + * @name until
22 + * @static
23 + * @memberOf module:ControlFlow
24 + * @method
25 + * @see [async.whilst]{@link module:ControlFlow.whilst}
26 + * @category Control Flow
27 + * @param {Function} test - synchronous truth test to perform before each
28 + * execution of `iteratee`. Invoked with ().
29 + * @param {AsyncFunction} iteratee - An async function which is called each time
30 + * `test` fails. Invoked with (callback).
31 + * @param {Function} [callback] - A callback which is called after the test
32 + * function has passed and repeated execution of `iteratee` has stopped. `callback`
33 + * will be passed an error and any arguments passed to the final `iteratee`'s
34 + * callback. Invoked with (err, [results]);
35 + */
36 +function until(test, iteratee, callback) {
37 + (0, _whilst2.default)(function () {
38 + return !test.apply(this, arguments);
39 + }, iteratee, callback);
40 +}
41 +module.exports = exports['default'];
...\ No newline at end of file ...\ No newline at end of file
1 +'use strict';
2 +
3 +Object.defineProperty(exports, "__esModule", {
4 + value: true
5 +});
6 +
7 +exports.default = function (tasks, callback) {
8 + callback = (0, _once2.default)(callback || _noop2.default);
9 + if (!(0, _isArray2.default)(tasks)) return callback(new Error('First argument to waterfall must be an array of functions'));
10 + if (!tasks.length) return callback();
11 + var taskIndex = 0;
12 +
13 + function nextTask(args) {
14 + var task = (0, _wrapAsync2.default)(tasks[taskIndex++]);
15 + args.push((0, _onlyOnce2.default)(next));
16 + task.apply(null, args);
17 + }
18 +
19 + function next(err /*, ...args*/) {
20 + if (err || taskIndex === tasks.length) {
21 + return callback.apply(null, arguments);
22 + }
23 + nextTask((0, _slice2.default)(arguments, 1));
24 + }
25 +
26 + nextTask([]);
27 +};
28 +
29 +var _isArray = require('lodash/isArray');
30 +
31 +var _isArray2 = _interopRequireDefault(_isArray);
32 +
33 +var _noop = require('lodash/noop');
34 +
35 +var _noop2 = _interopRequireDefault(_noop);
36 +
37 +var _once = require('./internal/once');
38 +
39 +var _once2 = _interopRequireDefault(_once);
40 +
41 +var _slice = require('./internal/slice');
42 +
43 +var _slice2 = _interopRequireDefault(_slice);
44 +
45 +var _onlyOnce = require('./internal/onlyOnce');
46 +
47 +var _onlyOnce2 = _interopRequireDefault(_onlyOnce);
48 +
49 +var _wrapAsync = require('./internal/wrapAsync');
50 +
51 +var _wrapAsync2 = _interopRequireDefault(_wrapAsync);
52 +
53 +function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }
54 +
55 +module.exports = exports['default'];
56 +
57 +/**
58 + * Runs the `tasks` array of functions in series, each passing their results to
59 + * the next in the array. However, if any of the `tasks` pass an error to their
60 + * own callback, the next function is not executed, and the main `callback` is
61 + * immediately called with the error.
62 + *
63 + * @name waterfall
64 + * @static
65 + * @memberOf module:ControlFlow
66 + * @method
67 + * @category Control Flow
68 + * @param {Array} tasks - An array of [async functions]{@link AsyncFunction}
69 + * to run.
70 + * Each function should complete with any number of `result` values.
71 + * The `result` values will be passed as arguments, in order, to the next task.
72 + * @param {Function} [callback] - An optional callback to run once all the
73 + * functions have completed. This will be passed the results of the last task's
74 + * callback. Invoked with (err, [results]).
75 + * @returns undefined
76 + * @example
77 + *
78 + * async.waterfall([
79 + * function(callback) {
80 + * callback(null, 'one', 'two');
81 + * },
82 + * function(arg1, arg2, callback) {
83 + * // arg1 now equals 'one' and arg2 now equals 'two'
84 + * callback(null, 'three');
85 + * },
86 + * function(arg1, callback) {
87 + * // arg1 now equals 'three'
88 + * callback(null, 'done');
89 + * }
90 + * ], function (err, result) {
91 + * // result now equals 'done'
92 + * });
93 + *
94 + * // Or, with named functions:
95 + * async.waterfall([
96 + * myFirstFunction,
97 + * mySecondFunction,
98 + * myLastFunction,
99 + * ], function (err, result) {
100 + * // result now equals 'done'
101 + * });
102 + * function myFirstFunction(callback) {
103 + * callback(null, 'one', 'two');
104 + * }
105 + * function mySecondFunction(arg1, arg2, callback) {
106 + * // arg1 now equals 'one' and arg2 now equals 'two'
107 + * callback(null, 'three');
108 + * }
109 + * function myLastFunction(arg1, callback) {
110 + * // arg1 now equals 'three'
111 + * callback(null, 'done');
112 + * }
113 + */
...\ No newline at end of file ...\ No newline at end of file
1 +'use strict';
2 +
3 +Object.defineProperty(exports, "__esModule", {
4 + value: true
5 +});
6 +exports.default = whilst;
7 +
8 +var _noop = require('lodash/noop');
9 +
10 +var _noop2 = _interopRequireDefault(_noop);
11 +
12 +var _slice = require('./internal/slice');
13 +
14 +var _slice2 = _interopRequireDefault(_slice);
15 +
16 +var _onlyOnce = require('./internal/onlyOnce');
17 +
18 +var _onlyOnce2 = _interopRequireDefault(_onlyOnce);
19 +
20 +var _wrapAsync = require('./internal/wrapAsync');
21 +
22 +var _wrapAsync2 = _interopRequireDefault(_wrapAsync);
23 +
24 +function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }
25 +
26 +/**
27 + * Repeatedly call `iteratee`, while `test` returns `true`. Calls `callback` when
28 + * stopped, or an error occurs.
29 + *
30 + * @name whilst
31 + * @static
32 + * @memberOf module:ControlFlow
33 + * @method
34 + * @category Control Flow
35 + * @param {Function} test - synchronous truth test to perform before each
36 + * execution of `iteratee`. Invoked with ().
37 + * @param {AsyncFunction} iteratee - An async function which is called each time
38 + * `test` passes. Invoked with (callback).
39 + * @param {Function} [callback] - A callback which is called after the test
40 + * function has failed and repeated execution of `iteratee` has stopped. `callback`
41 + * will be passed an error and any arguments passed to the final `iteratee`'s
42 + * callback. Invoked with (err, [results]);
43 + * @returns undefined
44 + * @example
45 + *
46 + * var count = 0;
47 + * async.whilst(
48 + * function() { return count < 5; },
49 + * function(callback) {
50 + * count++;
51 + * setTimeout(function() {
52 + * callback(null, count);
53 + * }, 1000);
54 + * },
55 + * function (err, n) {
56 + * // 5 seconds have passed, n = 5
57 + * }
58 + * );
59 + */
60 +function whilst(test, iteratee, callback) {
61 + callback = (0, _onlyOnce2.default)(callback || _noop2.default);
62 + var _iteratee = (0, _wrapAsync2.default)(iteratee);
63 + if (!test()) return callback(null);
64 + var next = function (err /*, ...args*/) {
65 + if (err) return callback(err);
66 + if (test()) return _iteratee(next);
67 + var args = (0, _slice2.default)(arguments, 1);
68 + callback.apply(null, [null].concat(args));
69 + };
70 + _iteratee(next);
71 +}
72 +module.exports = exports['default'];
...\ No newline at end of file ...\ No newline at end of file
1 +'use strict';
2 +
3 +Object.defineProperty(exports, "__esModule", {
4 + value: true
5 +});
6 +exports.default = asyncify;
7 +
8 +var _isObject = require('lodash/isObject');
9 +
10 +var _isObject2 = _interopRequireDefault(_isObject);
11 +
12 +var _initialParams = require('./internal/initialParams');
13 +
14 +var _initialParams2 = _interopRequireDefault(_initialParams);
15 +
16 +var _setImmediate = require('./internal/setImmediate');
17 +
18 +var _setImmediate2 = _interopRequireDefault(_setImmediate);
19 +
20 +function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }
21 +
22 +/**
23 + * Take a sync function and make it async, passing its return value to a
24 + * callback. This is useful for plugging sync functions into a waterfall,
25 + * series, or other async functions. Any arguments passed to the generated
26 + * function will be passed to the wrapped function (except for the final
27 + * callback argument). Errors thrown will be passed to the callback.
28 + *
29 + * If the function passed to `asyncify` returns a Promise, that promises's
30 + * resolved/rejected state will be used to call the callback, rather than simply
31 + * the synchronous return value.
32 + *
33 + * This also means you can asyncify ES2017 `async` functions.
34 + *
35 + * @name asyncify
36 + * @static
37 + * @memberOf module:Utils
38 + * @method
39 + * @alias wrapSync
40 + * @category Util
41 + * @param {Function} func - The synchronous function, or Promise-returning
42 + * function to convert to an {@link AsyncFunction}.
43 + * @returns {AsyncFunction} An asynchronous wrapper of the `func`. To be
44 + * invoked with `(args..., callback)`.
45 + * @example
46 + *
47 + * // passing a regular synchronous function
48 + * async.waterfall([
49 + * async.apply(fs.readFile, filename, "utf8"),
50 + * async.asyncify(JSON.parse),
51 + * function (data, next) {
52 + * // data is the result of parsing the text.
53 + * // If there was a parsing error, it would have been caught.
54 + * }
55 + * ], callback);
56 + *
57 + * // passing a function returning a promise
58 + * async.waterfall([
59 + * async.apply(fs.readFile, filename, "utf8"),
60 + * async.asyncify(function (contents) {
61 + * return db.model.create(contents);
62 + * }),
63 + * function (model, next) {
64 + * // `model` is the instantiated model object.
65 + * // If there was an error, this function would be skipped.
66 + * }
67 + * ], callback);
68 + *
69 + * // es2017 example, though `asyncify` is not needed if your JS environment
70 + * // supports async functions out of the box
71 + * var q = async.queue(async.asyncify(async function(file) {
72 + * var intermediateStep = await processFile(file);
73 + * return await somePromise(intermediateStep)
74 + * }));
75 + *
76 + * q.push(files);
77 + */
78 +function asyncify(func) {
79 + return (0, _initialParams2.default)(function (args, callback) {
80 + var result;
81 + try {
82 + result = func.apply(this, args);
83 + } catch (e) {
84 + return callback(e);
85 + }
86 + // if result is Promise object
87 + if ((0, _isObject2.default)(result) && typeof result.then === 'function') {
88 + result.then(function (value) {
89 + invokeCallback(callback, null, value);
90 + }, function (err) {
91 + invokeCallback(callback, err.message ? err : new Error(err));
92 + });
93 + } else {
94 + callback(null, result);
95 + }
96 + });
97 +}
98 +
99 +function invokeCallback(callback, error, value) {
100 + try {
101 + callback(error, value);
102 + } catch (e) {
103 + (0, _setImmediate2.default)(rethrow, e);
104 + }
105 +}
106 +
107 +function rethrow(error) {
108 + throw error;
109 +}
110 +module.exports = exports['default'];
...\ No newline at end of file ...\ No newline at end of file
...@@ -47,6 +47,14 @@ ...@@ -47,6 +47,14 @@
47 "resolved": "https://registry.npmjs.org/assert-plus/-/assert-plus-1.0.0.tgz", 47 "resolved": "https://registry.npmjs.org/assert-plus/-/assert-plus-1.0.0.tgz",
48 "integrity": "sha1-8S4PPF13sLHN2RRpQuTpbB5N1SU=" 48 "integrity": "sha1-8S4PPF13sLHN2RRpQuTpbB5N1SU="
49 }, 49 },
50 + "async": {
51 + "version": "2.6.1",
52 + "resolved": "https://registry.npmjs.org/async/-/async-2.6.1.tgz",
53 + "integrity": "sha512-fNEiL2+AZt6AlAw/29Cr0UDe4sRAHCpEHh54WMz+Bb7QfNcFw4h3loofyJpLeQs4Yx7yuqu/2dLgM5hKOs6HlQ==",
54 + "requires": {
55 + "lodash": "^4.17.10"
56 + }
57 + },
50 "asynckit": { 58 "asynckit": {
51 "version": "0.4.0", 59 "version": "0.4.0",
52 "resolved": "https://registry.npmjs.org/asynckit/-/asynckit-0.4.0.tgz", 60 "resolved": "https://registry.npmjs.org/asynckit/-/asynckit-0.4.0.tgz",
......
...@@ -9,6 +9,7 @@ ...@@ -9,6 +9,7 @@
9 "author": "", 9 "author": "",
10 "license": "ISC", 10 "license": "ISC",
11 "dependencies": { 11 "dependencies": {
12 + "async": "^2.6.1",
12 "body-parser": "^1.18.3", 13 "body-parser": "^1.18.3",
13 "cheerio": "^1.0.0-rc.2", 14 "cheerio": "^1.0.0-rc.2",
14 "express": "^4.16.4", 15 "express": "^4.16.4",
......