mirror of
https://github.com/logos-messaging/js-waku.git
synced 2026-01-14 11:43:10 +00:00
4 lines
109 B
TypeScript
4 lines
109 B
TypeScript
export function base64ToUtf8(b64: string): string {
|
|
return Buffer.from(b64, "base64").toString("utf-8");
|
|
}
|