(base64: string)
| 421 | } |
| 422 | |
| 423 | function fromBase64(base64: string): ArrayBuffer { |
| 424 | const binary = atob(base64); |
| 425 | const bytes = Uint8Array.from(binary, (c) => c.charCodeAt(0)); |
| 426 | return bytes.buffer; |
| 427 | } |
| 428 | |
| 429 | /** |
| 430 | * Returns the DI providers needed to enable HTTP transfer cache. |
no outgoing calls
no test coverage detected