async-args
Advanced tools
Comparing version
{ | ||
"name": "async-args", | ||
"version": "1.0.6", | ||
"version": "1.0.7", | ||
"description": "A utility for use in conjunction with async.", | ||
@@ -5,0 +5,0 @@ "main": "index.js", |
@@ -129,3 +129,3 @@ #async-args | ||
outputArg1Arg2Arg3, // (next) | ||
AsyncArgs.store('arg1', 'arg2', 'arg3'), // (arg1, arg2, arg3, next) | ||
asyncArgs.store('arg1', 'arg2', 'arg3'), // (arg1, arg2, arg3, next) | ||
aFunctionTakingThreeArgs // (arg1, arg2, arg3, next) | ||
@@ -141,5 +141,5 @@ ], next) | ||
outputArg1Arg2Arg3, // (next) | ||
AsyncArgs.store('arg1', 'arg2', 'arg3'), // (arg1, arg2, arg3, next) | ||
asyncArgs.store('arg1', 'arg2', 'arg3'), // (arg1, arg2, arg3, next) | ||
aFunctionTakingThreeArgsAndOutputArg4, // (arg1, arg2, arg3, next) | ||
AsyncArgs.values('arg2'), // (arg4, next) | ||
asyncArgs.values('arg2'), // (arg4, next) | ||
aFunctionTakingOneArg // (arg2, next) | ||
@@ -155,5 +155,5 @@ ], next) | ||
outputArg1Arg2Arg3, // (next) | ||
AsyncArgs.store('arg1', 'arg2', 'arg3'), // (arg1, arg2, arg3, next) | ||
asyncArgs.store('arg1', 'arg2', 'arg3'), // (arg1, arg2, arg3, next) | ||
aFunctionTakingThreeArgsAndOutputArg4, // (arg1, arg2, arg3, next) | ||
AsyncArgs.appendValues('arg2'), // (arg4, next) | ||
asyncArgs.appendValues('arg2'), // (arg4, next) | ||
aFunctionTakingOneArg // (arg4, arg2, next) | ||
@@ -169,5 +169,5 @@ ], next) | ||
outputArg1Arg2Arg3, // (next) | ||
AsyncArgs.store('arg1', 'arg2', 'arg3'), // (arg1, arg2, arg3, next) | ||
asyncArgs.store('arg1', 'arg2', 'arg3'), // (arg1, arg2, arg3, next) | ||
aFunctionTakingThreeArgsAndOutputArg4, // (arg1, arg2, arg3, next) | ||
AsyncArgs.prependValues('arg2'), // (arg4, next) | ||
asyncArgs.prependValues('arg2'), // (arg4, next) | ||
aFunctionTakingOneArg // (arg2, arg4, next) | ||
@@ -174,0 +174,0 @@ ], next) |