Hugging Face
Models
Datasets
Spaces
Posts
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
jbilcke-hf
/
ai-tube
like
283
Running
App
Files
Files
Community
10
67f97d0
ai-tube
/
src
/
lib
/
utils
/
isValidNumber.ts
jbilcke
working to improve the clap format
f42b4a1
9 months ago
raw
Copy download link
history
blame
Safe
137 Bytes
export
function
isValidNumber
(
input:
any
) {
return
(
typeof
(input) ===
"number"
&&
isFinite
(input) &&
!
isNaN
(input)
)
}