(code: string)
| 7844 | |
| 7845 | /** A presigned `code` body is any `https://` URL — never anything else. */ |
| 7846 | export function isPresignedCodeUrl(code: string): boolean { |
| 7847 | return code.startsWith('https://'); |
| 7848 | } |
| 7849 | |
| 7850 | /** |
| 7851 | * Stream a presigned URL into the Output's chunk writer using the |
no outgoing calls
no test coverage detected