2
0
mirror of synced 2025-02-24 03:58:06 +00:00
2020-07-13 08:03:56 -04:00

10 lines
297 B
JavaScript

"use strict";
import { arrayify } from "@ethersproject/bytes";
export function decode(textData) {
return arrayify(new Uint8Array(Buffer.from(textData, "base64")));
}
;
export function encode(data) {
return Buffer.from(arrayify(data)).toString("base64");
}
//# sourceMappingURL=index.js.map