(prefix: string)
| 21 | const api = composePluginApi([openApiHttpPlugin()] as const); |
| 22 | |
| 23 | const unique = (prefix: string) => `${prefix}_${randomBytes(4).toString("hex")}`; |
| 24 | |
| 25 | const cookiePair = (response: Response, name: string): string | undefined => { |
| 26 | for (const header of response.headers.getSetCookie?.() ?? []) { |
no test coverage detected