0f35d4c
1
2
3
export function isValidNumber(input?: any) { return typeof input === "number" && !isNaN(input) && isFinite(input) }