Skip to content

Commit

Permalink
Merge branch 'refs/heads/hotfix-2.0.2' into develop
Browse files Browse the repository at this point in the history
  • Loading branch information
kilianc committed Jan 19, 2012
2 parents 64bd995 + 9b0e7fa commit e5caa40
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions lib/fnqueue.js
Expand Up @@ -3,10 +3,10 @@ var

function FnQueue(tasks, callback, concurrecyLevel, isStopped) {
this.tasks = tasks;
this.taskDependencies = {};
this.taskDependencies = Object.create(null);
this.callback = callback;
this.callSequence = [];
this.results = {};
this.results = Object.create(null);
this.gotError = false;
this.concurrecyLevel = concurrecyLevel || 'auto';
this.runningNb = 0;
Expand Down
2 changes: 1 addition & 1 deletion package.json
Expand Up @@ -4,7 +4,7 @@
"main" : "./lib/fnqueue.js",
"description": "A powerful utility for function chaining",
"keywords": ["async", "queue", "promise", "flow", "parallel", "chain"],
"version": "2.0.1",
"version": "2.0.2",
"engines": {
"node": ">= v0.4.7"
},
Expand Down

0 comments on commit e5caa40

Please sign in to comment.