()
| 325 | } |
| 326 | |
| 327 | function readPublicCliFlagKeys() { |
| 328 | return new Set( |
| 329 | getFlagDefinitions() |
| 330 | .filter((definition) => definition.names.some((name) => name.startsWith('-'))) |
| 331 | .map((definition) => definition.key), |
| 332 | ); |
| 333 | } |
| 334 | |
| 335 | function listFiles(dir, predicate) { |
| 336 | if (!fs.existsSync(dir)) return []; |
no test coverage detected