(x: unknown)
| 193 | export function inferType(dom: unknown): string { |
| 194 | if (typeof dom === 'string') { |
| 195 | if ( |
| 196 | [ |
| 197 | 'Integers', |
| 198 | 'NonNegativeIntegers', |
| 199 | 'PositiveIntegers', |
| 200 | 'NonPositiveIntegers', |
| 201 | 'NegativeIntegers', |
| 202 | 'Primes', |
| 203 | ].includes(dom) |
no test coverage detected