UNPKG

mu.js

Version:

µ is the new $

2 lines 164 B
const Base64 = { encode: input => Buffer.from(input).toString('base64'), decode: base64str => Buffer.from(base64str, 'base64').toString() } module.exports = Base64