Hugging Face
Models
Datasets
Spaces
Community
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
jbilcke-hf
/
ai-comic-factory
like
10.8k
Running
App
Files
Files
Community
1197
Fetching metadata from the HF Docker repository...
refs/pr/1169
ai-comic-factory
/
src
/
lib
/
isValidNumber.ts
Julian Bilcke
update for oauth
3b81d2d
over 1 year ago
raw
Copy download link
history
blame
118 Bytes
export
function
isValidNumber
(
input?:
any
) {
return
typeof
input ===
"number"
&& !
isNaN
(input) &&
isFinite
(input)
}