(base64: string)
| 447 | } |
| 448 | |
| 449 | function fromBase64(base64: string): ArrayBuffer { |
| 450 | const binary = atob(base64); |
| 451 | const bytes = Uint8Array.from(binary, (c) => c.charCodeAt(0)); |
| 452 | return bytes.buffer; |
| 453 | } |
| 454 | |
| 455 | /** |
| 456 | * Returns the DI providers needed to enable HTTP transfer cache. |
no outgoing calls
no test coverage detected