jbilcke-hf's picture
jbilcke-hf HF staff
let's try dev mode
3165afb
raw
history blame
137 Bytes
export function isValidNumber(input: any) {
return (
typeof (input) === "number" &&
isFinite(input) &&
!isNaN(input)
)
}