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.15.1 to 0.15.2

10

out/main/runtime/compiler.js

@@ -56,2 +56,3 @@ import { isSchemaCompatible } from '../util/index.js';

this.awaitSym = this.async ? 'await ' : '';
this.prepareSymbols();
}

@@ -115,4 +116,3 @@ compileEsm() {

this.emitComment(`${node.ref} ${node.id}`);
const sym = this.nextSym('r');
this.symtable.set(`node:${node.id}`, sym);
const sym = this.getNodeSym(node.id);
this.code.block(`${this.asyncSym}function ${sym}(params, ctx) {`, `}`, () => {

@@ -391,2 +391,8 @@ this.emitNodePreamble(node);

}
prepareSymbols() {
for (const node of this.order) {
const sym = this.nextSym('r');
this.symtable.set(`node:${node.id}`, sym);
}
}
}

@@ -393,0 +399,0 @@ export class CompilerError extends Error {

2

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