(
env: Record<string, string | undefined>,
options?: { readonly log?: boolean },
)
| 103 | * the effect is scoped and the scope closed before reading. |
| 104 | */ |
| 105 | const captureExportUrls = async ( |
| 106 | env: Record<string, string | undefined>, |
| 107 | options?: { readonly log?: boolean }, |
| 108 | ): Promise<Array<string>> => (await captureExports(env, options)).map((request) => request.url); |
| 109 | |
| 110 | const captureExportHeaders = async ( |
| 111 | env: Record<string, string | undefined>, |
no test coverage detected