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

encode32

Package Overview
Dependencies
Maintainers
1
Versions
4
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

encode32 - npm Package Compare versions

Comparing version 1.0.1 to 1.0.2

test.js

2

encode32.js

@@ -27,3 +27,3 @@ // encode32: Base32 encoding for 32-bit numbers inspired by Douglas Crockford

var i = digits.indexOf(s.toUpperCase());
decode_table[c] = i > 0 ? i: NaN;
decode_table[c] = i >= 0 ? i : NaN;
}

@@ -30,0 +30,0 @@

{
"name": "encode32",
"description": "an encoding for 32-bit numbers inspired by Crockford Base32",
"version": "1.0.1",
"version": "1.0.2",
"author": "Ken Woodruff <ken.woodruff@gmail.com>",

@@ -6,0 +6,0 @@ "repository": "http://github.com/femto113/node-encode32.git",

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