| 26 | }; |
| 27 | |
| 28 | export class LoopValidationError extends Error { |
| 29 | constructor(message) { |
| 30 | super(message); |
| 31 | this.name = "LoopValidationError"; |
| 32 | } |
| 33 | } |
| 34 | |
| 35 | export function categoryLabel(category) { |
| 36 | return CATEGORY_LABELS[category]; |
nothing calls this directly
no outgoing calls
no test coverage detected