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

@nodescript/core

Package Overview
Dependencies
Maintainers
1
Versions
267
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@nodescript/core - npm Package Compare versions

Comparing version 0.18.0 to 0.18.1

9

out/main/runtime/compiler.js

@@ -396,4 +396,9 @@ import { isSchemaCompatible } from '../util/index.js';

switch (cache) {
case 'auto':
return this.linkMap.get(node.id).size > 1;
case 'auto': {
const links = this.linkMap.get(node.id);
if (links.size > 1) {
return true;
}
return [...links].some(link => link.prop.expand);
}
case 'always':

@@ -400,0 +405,0 @@ return true;

{
"name": "@nodescript/core",
"version": "0.18.0",
"version": "0.18.1",
"type": "module",

@@ -5,0 +5,0 @@ "description": "Visual programming language for Browser and Node",

Sorry, the diff of this file is not supported yet

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