mirror of
https://github.com/logos-messaging/js-waku.git
synced 2026-01-31 12:03:06 +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");
|
||
|
|
}
|