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
2
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 6.1.1 to 6.1.2

1

out/main/runtime/GraphView.d.ts

@@ -17,2 +17,3 @@ import { GraphSpec } from '../types/model.js';

isSubgraph(): boolean;
ancestors(): Iterable<GraphView>;
isNodeExists(id: string): boolean;

@@ -19,0 +20,0 @@ getNodeById(id: string): NodeView | null;

@@ -32,2 +32,8 @@ import { clone } from '../util/clone.js';

}
*ancestors() {
if (this.parentNode) {
yield* this.parentNode.graph.ancestors();
}
yield this;
}
isNodeExists(id) {

@@ -34,0 +40,0 @@ return this.graphSpec.nodes[id] != null;

2

package.json
{
"name": "@nodescript/core",
"version": "6.1.1",
"version": "6.1.2",
"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