diff options
Diffstat (limited to 'dist/async.js')
-rw-r--r-- | dist/async.js | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/dist/async.js b/dist/async.js index 0567d3f..a7d903b 100644 --- a/dist/async.js +++ b/dist/async.js @@ -2404,8 +2404,6 @@ }); }); - var reverse = Array.prototype.reverse; - /** * Creates a function which is a composition of the passed asynchronous * functions. Each function consumes the return value of the function that @@ -2442,7 +2440,7 @@ * }); */ var compose = rest(function (args) { - return seq.apply(null, reverse.call(args)); + return seq.apply(null, args.reverse()); }); function concat$1(eachfn, arr, fn, callback) { |