Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

@confuzzle/writepuz

Package Overview
Dependencies
Maintainers
1
Versions
6
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@confuzzle/writepuz - npm Package Compare versions

Comparing version 1.2.2 to 1.2.3

4

package.json
{
"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 @@ }

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc