Micro, uRL safe base64
npm install u64
Example
jsconst { encode, decode } = require('u64')const encoded = encode('Hello world!')// => 'SGVsbG8gd29ybGQh'const decoded = decode(encoded)// => 'Hello world!'
const encoded = encode('Hello world!')// => 'SGVsbG8gd29ybGQh'
const decoded = decode(encoded)// => 'Hello world!'