atomicassets
Advanced tools
Comparing version 1.2.1 to 1.2.2
@@ -5,4 +5,4 @@ import SerializationState from '../State'; | ||
constructor(); | ||
deserialize(state: SerializationState): boolean; | ||
deserialize(state: SerializationState): number; | ||
serialize(data: boolean): Uint8Array; | ||
} |
@@ -13,3 +13,3 @@ "use strict"; | ||
const data = super.deserialize(state); | ||
return data[0] === 1; | ||
return data[0] === 1 ? 1 : 0; | ||
} | ||
@@ -16,0 +16,0 @@ serialize(data) { |
@@ -12,3 +12,3 @@ { | ||
"license": "MIT", | ||
"version": "1.2.1", | ||
"version": "1.2.2", | ||
"main": "build/index.js", | ||
@@ -15,0 +15,0 @@ "types": "build/index.d.ts", |
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
144722