Socket
Socket
Sign inDemoInstall

@node-red/runtime

Package Overview
Dependencies
76
Maintainers
2
Versions
106
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

Comparing version 2.1.3 to 2.1.4

21

lib/flows/Flow.js

@@ -442,4 +442,2 @@ /**

return [env.name, env];
return [env.name, env];
});

@@ -461,20 +459,20 @@ group._env = Object.fromEntries(entries);

(value === true));
return {
return [{
val: val
};
}, null];
}
if (type === "cred") {
return {
return [{
val: value
};
}, null];
}
try {
var val = redUtil.evaluateNodeProperty(value, type, node, null, null);
return {
return [{
val: val
};
}, null];
}
catch (e) {
this.error(e);
return null;
return [null, null];
}

@@ -493,3 +491,3 @@ }

}
return null;
return [null, name];
}

@@ -551,2 +549,5 @@

}
else {
key = key.substring(8);
}
}

@@ -553,0 +554,0 @@ return this.parent.getSetting(key);

@@ -376,6 +376,7 @@ /**

const group = this.getGroupNode(node.g);
const result = this.getGroupEnvSetting(node, group, name);
const [result, newName] = this.getGroupEnvSetting(node, group, name);
if (result) {
return result.val;
}
name = newName;
}

@@ -382,0 +383,0 @@

{
"name": "@node-red/runtime",
"version": "2.1.3",
"version": "2.1.4",
"license": "Apache-2.0",

@@ -19,4 +19,4 @@ "main": "./lib/index.js",

"dependencies": {
"@node-red/registry": "2.1.3",
"@node-red/util": "2.1.3",
"@node-red/registry": "2.1.4",
"@node-red/util": "2.1.4",
"async-mutex": "0.3.2",

@@ -23,0 +23,0 @@ "clone": "2.1.2",

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