1.1.0 • Published 9 years ago

base64int v1.1.0

Weekly downloads
6
License
ISC
Repository
github
Last release
9 years ago

Base64 Int

Pure JS integer to/from base64 converter compatible with IE7+, Opera, Firefox, Chrome and Safari. Outputs a base64 string that can be stored in cookies, useful for compressing numbers.

How to install

npm install base64int

Example

var base64int = require('base64int');

base64int.encode(123456);
// returns "eJA"

base64int.decode('eJA');
// returns 123456
1.1.0

9 years ago

1.0.3

9 years ago

1.0.2

9 years ago