1.0.0 • Published 9 years ago

base64-lex v1.0.0

Weekly downloads
2
License
MIT
Repository
github
Last release
9 years ago

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