Files
start-os/web/projects/shared/src/util/base-64.ts
2023-11-13 15:59:16 -07:00

10 lines
260 B
TypeScript

import * as Base64 from 'base64-js'
export function encodeBase64(text: string) {
return Base64.fromByteArray(new TextEncoder().encode(text))
}
export function decodeBase64(encoded: string) {
return new TextDecoder().decode(Base64.toByteArray(encoded))
}