(
env: Record<string, string | undefined>,
options?: { readonly log?: boolean },
)
| 198 | * the effect is scoped and the scope closed before reading. |
| 199 | */ |
| 200 | const captureExportUrls = async ( |
| 201 | env: Record<string, string | undefined>, |
| 202 | options?: { readonly log?: boolean }, |
| 203 | ): Promise<Array<string>> => (await captureExports(env, options)).map((request) => request.url); |
| 204 | |
| 205 | const captureExportHeaders = async ( |
| 206 | env: Record<string, string | undefined>, |
no test coverage detected