Skip to content

Commit

Permalink
2.5.2
Browse files Browse the repository at this point in the history
  • Loading branch information
suguru03 committed Aug 13, 2018
1 parent 27695ad commit 32a6433
Show file tree
Hide file tree
Showing 6 changed files with 146 additions and 144 deletions.
2 changes: 1 addition & 1 deletion bower.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "neo-async",
"main": "lib/async.js",
"version": "2.5.1",
"version": "2.5.2",
"homepage": "https://github.com/suguru03/neo-async",
"authors": [
"Suguru Motegi"
Expand Down
10 changes: 6 additions & 4 deletions dist/async.js
Original file line number Diff line number Diff line change
Expand Up @@ -1964,11 +1964,11 @@
var dir = createLogger('dir');

/**
* @version 2.5.1
* @version 2.5.2
* @namespace async
*/
var index = {
VERSION: '2.5.1',
VERSION: '2.5.2',

// Collections
each: each,
Expand Down Expand Up @@ -8861,9 +8861,11 @@
args.push(done);
fn.apply(null, args);

function done() {
function done(err) {
var args = createArray(arguments);
memo[key] = args;
if (!err) {
memo[key] = args;
}
var q = queues[key];
delete queues[key];

Expand Down
Loading

0 comments on commit 32a6433

Please sign in to comment.