(input: string)
| 2 | import { Base64 } from 'js-base64'; |
| 3 | |
| 4 | export function base64ToBytes(input: string): Uint8Array { |
| 5 | return Base64.toUint8Array(input); |
| 6 | } |
| 7 | export function bytesToBase64( |
| 8 | input: Uint8Array, |
| 9 | params?: { urlSafe?: boolean; padding?: boolean }, |
no outgoing calls
no test coverage detected