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