npm install @prashoonb/base64-encoder-decoderThis function takes a byte string (the input parameter) and encodes it according to base64.
const base64 = require("@prashoonb/base64-encoder-decoder");
const text = "foo Β© bar π baz";
const encoded = base64.encode(bytes);
console.log(encoded);
// β "Zm9vIMKpIGJhciDwnYyGIGJheg=="This function takes a base64-encoded string (the input parameter) and decodes it.
const encoded = "Zm9vIMKpIGJhciDwnYyGIGJheg==";
const text = base64.decode(bytes);
console.log(text);
// β "foo Β© bar π baz"| Prashoon Bhattacharjee |
@prashoonb/base64-encoder-decoder is available under the MIT license.
Inspired by Mathias Bynens' base64 package.