(data: Uint8Array)
| 234 | } |
| 235 | |
| 236 | export function base64Encode(data: Uint8Array): string { |
| 237 | return OpWrappers.forgivingBase64Encode(data) |
| 238 | } |
| 239 | |
| 240 | export function base64Decode(data: string): Uint8Array { |
| 241 | return OpWrappers.forgivingBase64Decode(data) |
no outgoing calls
no test coverage detected