(baseUrl: string)
| 39 | const cookieOf = (identity: Identity): string => identity.headers?.cookie ?? ""; |
| 40 | |
| 41 | const originHeaders = (baseUrl: string) => ({ origin: new URL(baseUrl).origin }); |
| 42 | |
| 43 | const escapeRegExp = (value: string): string => value.replace(/[.*+?^${}()|[\]\\]/g, "\\$&"); |
| 44 |
no outgoing calls
no test coverage detected