(param: any)
| 182 | } |
| 183 | |
| 184 | export function isInteger(param: any): boolean { |
| 185 | return typeof param === 'number' && Number.isInteger(param); |
| 186 | } |
| 187 | |
| 188 | export function isValidPositiveIntegerIncludingZero(param: any): boolean { |
| 189 | return typeof param === 'number' && Number.isInteger(param) && param >= 0; |
nothing calls this directly
no outgoing calls
no test coverage detected