New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

run-auto

Package Overview
Dependencies
Maintainers
1
Versions
11
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

run-auto - npm Package Compare versions

Comparing version

to
2.0.4

7

index.js

@@ -0,1 +1,2 @@

/*! run-auto. MIT License. Feross Aboukhadijeh <https://feross.org/opensource> */
module.exports = runAuto

@@ -5,2 +6,4 @@

var hasOwnProperty = Object.prototype.hasOwnProperty
var _setImmediate

@@ -88,4 +91,4 @@ if (typeof setImmediate === 'function') {

return requires.reduce(function (a, x) {
return a && results.hasOwnProperty(x)
}, true) && !results.hasOwnProperty(key)
return a && hasOwnProperty.call(results, x)
}, true) && !hasOwnProperty.call(results, key)
}

@@ -92,0 +95,0 @@

{
"name": "run-auto",
"description": "Determine the best order for running async functions, and run them",
"version": "2.0.3",
"version": "2.0.4",
"author": {
"name": "Feross Aboukhadijeh",
"email": "feross@feross.org",
"url": "http://feross.org/"
"url": "https://feross.org"
},

@@ -14,8 +14,8 @@ "bugs": {

"dependencies": {
"dezalgo": "^1.0.1"
"dezalgo": "^1.0.3"
},
"devDependencies": {
"airtap": "0.0.4",
"airtap": "^3.0.0",
"standard": "*",
"tape": "^4.0.0"
"tape": "^5.0.1"
},

@@ -46,3 +46,17 @@ "homepage": "https://github.com/feross/run-auto",

"test-node": "tape test/*.js"
}
},
"funding": [
{
"type": "github",
"url": "https://github.com/sponsors/feross"
},
{
"type": "patreon",
"url": "https://www.patreon.com/feross"
},
{
"type": "consulting",
"url": "https://feross.org/support"
}
]
}