1
0
forked from mico/idle_moloch
idle_moloch/lib/v3-periphery/test/shared/base64.ts
2024-11-01 11:55:27 +01:00

8 lines
215 B
TypeScript

export function base64Encode(str: string): string {
return Buffer.from(str, 'utf8').toString('base64')
}
export function base64Decode(str: string): string {
return Buffer.from(str, 'base64').toString('utf8')
}