(key: string)
| 17 | */ |
| 18 | function buildProjectClause(projectKeys: string[]): string { |
| 19 | const escapeKey = (key: string) => key.replace(/\\/g, '\\\\').replace(/"/g, '\\"') |
| 20 | if (projectKeys.length === 1) { |
| 21 | return `project = "${escapeKey(projectKeys[0])}"` |
| 22 | } |
no test coverage detected