ac7030c
1
2
3
4
5
6
7
export function isValidNumber(input: any) { return ( typeof (input) === "number" && isFinite(input) && !isNaN(input) ) }