Comparing version 0.1.16 to 0.1.17
{ | ||
"name": "snarkjs", | ||
"version": "0.1.16", | ||
"version": "0.1.17", | ||
"description": "zkSNARKs implementation in JavaScript", | ||
@@ -5,0 +5,0 @@ "main": "index.js", |
@@ -26,3 +26,3 @@ /* | ||
function stringifyBigInts(o) { | ||
if ((typeof(o) == "bigint") || (o instanceof bigInt)) { | ||
if ((typeof(o) == "bigint") || o.isZero !== undefined) { | ||
return o.toString(10); | ||
@@ -29,0 +29,0 @@ } else if (Array.isArray(o)) { |
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
297153