(identity: { readonly headers?: Record<string, string> })
| 38 | }; |
| 39 | |
| 40 | const cookieOf = (identity: { readonly headers?: Record<string, string> }): string => |
| 41 | identity.headers?.cookie ?? ""; |
| 42 | |
| 43 | const originHeaders = (baseUrl: string) => ({ origin: new URL(baseUrl).origin }); |
| 44 |
no outgoing calls
no test coverage detected