mirror of
https://github.com/logos-messaging/logos-delivery-js.git
synced 2026-03-18 23:53:38 +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");
|
||
|
|
}
|