(originalSize: number)
| 48 | * ``` |
| 49 | */ |
| 50 | export function calcSizeBase64(originalSize: number): number { |
| 51 | return ((originalSize + 2) / 3 | 0) * 4; |
| 52 | } |
| 53 | |
| 54 | export function encode( |
| 55 | buffer: Uint8Array_, |
no outgoing calls
no test coverage detected