// 1. 编码
const buf = Buffer.from('hello world', 'utf8');
console.log(buf.toString('base64'));
// aGVsbG8gd29ybGQ=
// 2. 解码
const b = Buffer.from('aGVsbG8gd29ybGQ=', 'base64')
console.log(b.toString())
// hello world
// 1. 编码
const buf = Buffer.from('hello world', 'utf8');
console.log(buf.toString('base64'));
// aGVsbG8gd29ybGQ=
// 2. 解码
const b = Buffer.from('aGVsbG8gd29ybGQ=', 'base64')
console.log(b.toString())
// hello world