(input: string, errorMessage: string)
| 188 | } |
| 189 | |
| 190 | export function parseNumber(input: string, errorMessage: string) { |
| 191 | const number = Number(input); |
| 192 | if (!isValidNumber(number)) throw new TypeError(errorMessage); |
| 193 | return number; |
| 194 | } |
| 195 | |
| 196 | export function isWildcardComparator(c: Comparator): boolean { |
| 197 | return ( |
no test coverage detected