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