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
2
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.2.3

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",