// 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
**粗体** _斜体_ [链接](http://example.com) `代码` - 列表 > 引用
。你还可以使用@
来通知其他用户。