Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

@nlpjs/evaluator

Package Overview
Dependencies
Maintainers
1
Versions
26
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@nlpjs/evaluator - npm Package Compare versions

Comparing version 4.17.1 to 4.19.8

4

package.json
{
"name": "@nlpjs/evaluator",
"version": "4.17.1",
"version": "4.19.8",
"description": "Evaluator",

@@ -31,3 +31,3 @@ "author": {

},
"gitHead": "c80705f477c2209f8436a845ca1f54093e45e04b"
"gitHead": "49e973312ce0d74e38c6a7bec8610a7e50b4ec65"
}

@@ -83,2 +83,8 @@ /*

}
if (node.operator === '&&' && !left) {
return false;
}
if (node.operator === '||' && left) {
return true;
}
const right = this.walk(node.right, context);

@@ -85,0 +91,0 @@ if (right === this.failResult) {

@@ -96,2 +96,8 @@ /*

}
if (node.operator === '&&' && !left) {
return false;
}
if (node.operator === '||' && left) {
return true;
}
const right = await this.walk(node.right, context);

@@ -98,0 +104,0 @@ if (right === this.failResult) {

SocketSocket SOC 2 Logo

Product

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

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc