async-args
Advanced tools
Comparing version
22
index.js
var jp = require('jsonpointer') | ||
function nextApplyFactory(next, args){ | ||
return function nextApply(){ | ||
next.apply(next, args) | ||
} | ||
} | ||
function storeMetaFactory(lookup) { | ||
@@ -24,3 +18,3 @@ return function storeFactory() { | ||
args.unshift(null) | ||
process.nextTick(nextApplyFactory(next, args)) | ||
next.apply(null, args) | ||
} | ||
@@ -43,3 +37,3 @@ } | ||
args.unshift(null) | ||
process.nextTick(nextApplyFactory(next, args)) | ||
next.apply(null, args) | ||
} | ||
@@ -64,3 +58,3 @@ } | ||
args.unshift(null) | ||
process.nextTick(nextApplyFactory(next, args)) | ||
next.apply(null, args) | ||
} | ||
@@ -85,3 +79,3 @@ } | ||
args.unshift(null) | ||
process.nextTick(nextApplyFactory(next, args)) | ||
next.apply(null, args) | ||
} | ||
@@ -99,3 +93,3 @@ } | ||
args.unshift(null) | ||
process.nextTick(nextApplyFactory(next, args)) | ||
next.apply(null, args) | ||
} | ||
@@ -113,3 +107,3 @@ } | ||
args.unshift(null) | ||
process.nextTick(nextApplyFactory(next, args)) | ||
next.apply(null, args) | ||
} | ||
@@ -127,3 +121,3 @@ } | ||
args.unshift(null) | ||
process.nextTick(nextApplyFactory(next, args)) | ||
next.apply(null, args) | ||
} | ||
@@ -156,3 +150,3 @@ } | ||
newArgs.unshift(null) | ||
process.nextTick(nextApplyFactory(next, newArgs)) | ||
next.apply(null, newArgs) | ||
} | ||
@@ -159,0 +153,0 @@ } |
{ | ||
"name": "async-args", | ||
"version": "1.2.2", | ||
"version": "1.2.3", | ||
"description": "A utility for use in conjunction with async.", | ||
@@ -5,0 +5,0 @@ "main": "index.js", |
12333
-2.34%154
-3.14%