1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
| /*jshint -W054 */
| ;(function (exports) {
| 'use strict';
|
| function forEachAsync(arr, fn, thisArg) {
| var dones = []
| , index = -1
| ;
|
| function next(BREAK, result) {
| index += 1;
|
| if (index === arr.length || BREAK === forEachAsync.__BREAK) {
| dones.forEach(function (done) {
| done.call(thisArg, result);
| });
| return;
| }
|
| fn.call(thisArg, next, arr[index], index, arr);
| }
|
| setTimeout(next, 4);
|
| return {
| then: function (_done) {
| dones.push(_done);
| return this;
| }
| };
| }
| forEachAsync.__BREAK = {};
|
| exports.forEachAsync = forEachAsync;
| }('undefined' !== typeof exports && exports || new Function('return this')()));
|
|