(s: string)
| 186 | return base |
| 187 | } |
| 188 | const encode = (s: string) => encodeURIComponent(s).replace(/%24/g, '$') |
| 189 | const parts: string[] = [] |
| 190 | for (const [key, value] of Object.entries(req.query)) { |
| 191 | if (value === undefined || value === null) continue |
no test coverage detected