base64-browser

直接在浏览器使用的 base64 encode/decode 函数。支持中文或其他 utf8 格式的字符串


License
ISC
Install
npm install base64-browser@1.0.0

Documentation

base64-browser

直接在浏览器使用的 base64 encode/decode 函数。支持中文或其他 utf8 格式的字符串

安装

npm i base64-browser

使用

  1. 引入
// CMD...
const {encode, decode} = require('base64-browser')

// ES6...
import {encode,decode} from 'base64-browser'
  1. 使用
encode("你好,世界。") // 5L2g5aW977yM5LiW55WM44CC
decode("5L2g5aW977yM5LiW55WM44CC") // 你好,世界。