Socket
Socket
Sign inDemoInstall

eslint-plugin-node

Package Overview
Dependencies
100
Maintainers
1
Versions
60
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

Comparing version 4.2.2 to 4.2.3

8

lib/rules/no-deprecated-api.js

@@ -196,2 +196,3 @@ /**

let globalScope = null
const varStack = []

@@ -404,5 +405,12 @@ /**

function checkVariable(variable, path, infoMap) {
if (varStack.indexOf(variable) !== -1) {
return
}
varStack.push(variable)
for (const reference of variable.references.filter(r => r.isRead())) {
checkProperties(reference.identifier, path, infoMap)
}
varStack.pop()
}

@@ -409,0 +417,0 @@

2

package.json
{
"name": "eslint-plugin-node",
"version": "4.2.2",
"version": "4.2.3",
"description": "Additional ESLint's rules for Node.js",

@@ -5,0 +5,0 @@ "files": [

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap

Packages

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc