Correct error message in evalBoolean (#4889)
Signed| @@ -575,7 +575,7 @@ export function evalBoolean(rule, a, b) { | ||
| 575 | 575 | case 'neq': |
| 576 | 576 | return aString !== bString; |
| 577 | 577 | default: |
| 578 | 578 | throw new Error(`Unknown boolean comparison rule for type numberstring. Accepted: in, nin, eq, neq. Provided: ${rule}`); |
| 579 | 579 | } |
| 580 | 580 | } |
| 581 | 581 | |