Comparing version 0.0.18 to 0.0.19
@@ -7,2 +7,6 @@ // tryStringify will try to turn the provided input into a string. If the input | ||
function tryStringify(obj) { | ||
// Check for undefined input. | ||
if (obj === undefined || obj === null) { | ||
return "[cannot stringify undefined input]"; | ||
} | ||
// Parse the error into a string. | ||
@@ -9,0 +13,0 @@ if (typeof obj === "string") { |
{ | ||
"name": "libskynet", | ||
"version": "0.0.18", | ||
"version": "0.0.19", | ||
"description": "helper library to interact with skynet's low level primitives", | ||
@@ -5,0 +5,0 @@ "main": "dist/index.js", |
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
128195
4103
7