(msg)
| 20 | const VALID_COST = new Set(['low', 'medium', 'high', 'very-high']); |
| 21 | |
| 22 | function fail(msg) { |
| 23 | console.error(`ERROR: ${msg}`); |
| 24 | process.exit(1); |
| 25 | } |
| 26 | |
| 27 | function validatePattern(p, index) { |
| 28 | const prefix = `patterns[${index}]`; |
no outgoing calls
no test coverage detected