UNPKG

181 BJavaScriptView Raw
1"use strict"
2
3module.exports = {
4 encode(text) {
5 return Buffer(text).toString("base64")
6 },
7
8 decode(token) {
9 return Buffer.from(token, "base64").toString("ascii")
10 }
11}