(b64: string)
| 1554 | } |
| 1555 | |
| 1556 | function base64ToBytes(b64: string): Uint8Array { |
| 1557 | const binary = atob(b64); |
| 1558 | const bytes = new Uint8Array(binary.length); |
| 1559 | for (let i = 0; i < binary.length; i++) { |
| 1560 | bytes[i] = binary.charCodeAt(i); |
| 1561 | } |
| 1562 | return bytes; |
| 1563 | } |
| 1564 | |
| 1565 | // ── Path helpers ───────────────────────────────────────────────────── |
| 1566 |
no outgoing calls
no test coverage detected