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

@node-red/util

Package Overview
Dependencies
Maintainers
2
Versions
113
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@node-red/util - npm Package Compare versions

Comparing version 1.2.3 to 1.2.4

13

lib/util.js

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

}
} else if (typeof value === 'bigint') {
value = {
__enc__: true,
type: 'bigint',
data: value.toString()
}
} else if (value && value.constructor) {

@@ -812,2 +818,9 @@ if (value.type === "Buffer") {

msg.msg = msg.msg.toString();
} else if (msgType === "bigint") {
msg.format = "bigint";
msg.msg = {
__enc__: true,
type: 'bigint',
data: msg.msg.toString()
};
} else if (msg.msg === null || msgType === "undefined") {

@@ -814,0 +827,0 @@ msg.format = (msg.msg === null)?"null":"undefined";

4

package.json
{
"name": "@node-red/util",
"version": "1.2.3",
"version": "1.2.4",
"license": "Apache-2.0",

@@ -23,5 +23,5 @@ "repository": {

"lodash.clonedeep": "^4.5.0",
"moment-timezone": "^0.5.31",
"moment-timezone": "0.5.32",
"when": "3.7.8"
}
}
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