()
| 20 | } |
| 21 | |
| 22 | export function timestamp(): number { |
| 23 | return Date.now(); |
| 24 | } |
| 25 | |
| 26 | export function encodeBASE64(str: string): string { |
| 27 | const bytes = new TextEncoder().encode(str); |
nothing calls this directly
no outgoing calls
no test coverage detected