base64-lex

1.0.0 • Public • Published

base64-lex

Url-safe base64 encoding variant which preserves lexicographical ordering of underlying bytes.

build status

var b64lex = require('base64-lex')
 
// encode a buffer or typed array
b64lex.encode(new Uint8Array([ 0xde, 0xad, 0xbe, 0xef ])) // 'sfrzwl-'
b64lex.encode(Buffer('deadbeef', 'hex')) // 'sfrzwl-'
 
// strings encode in utf8, also preserving lex order
b64lex.encode('foo bar') // 'Pbyk869XSW--'
 
// decode returns a buffer
b64lex.decode('Pbyk869XSW--') // Buffer('foo bar', 'utf8')
 
// decode only works with base64-lex-encoded strings
b64lex.decode(Buffer(0)) // throws

Package Sidebar

Install

npm i base64-lex

Weekly Downloads

3

Version

1.0.0

License

MIT

Last publish

Collaborators

  • deanlandolt