(index)
| 1499 | var transition = this; |
| 1500 | step(0); |
| 1501 | function step(index) { |
| 1502 | if (index >= queue.length) { |
| 1503 | cb(); |
| 1504 | } else { |
| 1505 | fn(queue[index], transition, function () { |
| 1506 | step(index + 1); |
| 1507 | }); |
| 1508 | } |
| 1509 | } |
| 1510 | }; |
| 1511 | |
| 1512 | /** |
no test coverage detected