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.0 to 1.0.1

2

encode32.js

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

var encode_table = digits.split('');
var decode_table = new Uint8Array(256);
var decode_table = new Array(256);
for (var c = 0; c < 256; c++) {

@@ -25,0 +25,0 @@ s = String.fromCharCode(c);

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

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

"license": "MIT",
"engines": { "node": ">= 0.6.7" }
"engines": { "node": ">= 0.4.7" }
}
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