infrastructure-upgrade/lib/v3-periphery/test/shared/base64.ts

8 lines
215 B
TypeScript
Raw Permalink Normal View History

2023-04-08 18:46:18 +00:00
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')
}