@confuzzle/writepuz
Advanced tools
Comparing version 1.2.2 to 1.2.3
{ | ||
"name": "@confuzzle/writepuz", | ||
"version": "1.2.2", | ||
"version": "1.2.3", | ||
"description": "Minimal .puz format writer", | ||
@@ -17,4 +17,4 @@ "license": "MIT", | ||
"iconv-lite": "^0.5.2", | ||
"@confuzzle/puz-common": "^1.2.2" | ||
"@confuzzle/puz-common": "^1.2.3" | ||
} | ||
} |
@@ -66,8 +66,7 @@ const puz_common = require('@confuzzle/puz-common'); | ||
for (let i = 0; i < puz.clues.length; i++) | ||
c = checksum(enc(puz.clues[i]), c); | ||
c = checksum(enc(puz.clues[i] ? puz.clues[i] : ' '), c); | ||
if (puz.note) | ||
c = checksum(enc(puz.note), c); | ||
c = checksum(enc(puz.note, true), c); | ||
c = checksum(nullByte(), c) | ||
return c; | ||
@@ -74,0 +73,0 @@ } |
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
4983
101
Updated@confuzzle/puz-common@^1.2.3