ai-tube / src /app /api /utils /isValidNumber.ts
jbilcke-hf's picture
jbilcke-hf HF staff
working on some new features
3d4392e
raw
history blame
No virus
117 Bytes
export function isValidNumber(input?: any) {
return typeof input === "number" && !isNaN(input) && isFinite(input)
}