Comparing version 0.0.41 to 0.0.42
@@ -1,3 +0,3 @@ | ||
declare function addContextToErr(err: string | null, context: string): string; | ||
declare function addContextToErr(err: any, context: string): string; | ||
declare function composeErr(...inputs: any): string | null; | ||
export { addContextToErr, composeErr }; |
@@ -16,2 +16,3 @@ import { tryStringify } from "./stringifytry.js"; | ||
} | ||
err = tryStringify(err); | ||
return tryStringify(context) + ": " + tryStringify(err); | ||
@@ -18,0 +19,0 @@ } |
{ | ||
"name": "libskynet", | ||
"version": "0.0.41", | ||
"version": "0.0.42", | ||
"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
149737
4645