mirror of
https://github.com/Start9Labs/start-os.git
synced 2026-03-26 10:21:52 +00:00
10 lines
260 B
TypeScript
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))
|
|
}
|