base64-lex

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

Usage no npm install needed!

<script type="module">
  import base64Lex from 'https://cdn.skypack.dev/base64-lex';
</script>

README

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