You're Invited:Meet the Socket Team at BlackHat and DEF CON in Las Vegas, Aug 4-6.RSVP
Socket
Book a DemoInstallSign in
Socket

async-args

Package Overview
Dependencies
Maintainers
1
Versions
27
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

async-args - npm Package Compare versions

Comparing version

to
1.0.7

2

package.json
{
"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)