@node-red/util
Advanced tools
Comparing version 1.2.3 to 1.2.4
@@ -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"; |
{ | ||
"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" | ||
} | ||
} |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
55345
1316
+ Addedmoment-timezone@0.5.32(transitive)
- Removedmoment-timezone@0.5.46(transitive)
Updatedmoment-timezone@0.5.32