Hugging Face
Models
Datasets
Spaces
Posts
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
mikx1
/
gradio_app
like
0
Runtime error
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
9d15051
gradio_app
/
app
/
frontend
/
node_modules
/
es5-ext
/
number
/
to-pos-integer.js
mikx1
Upload folder using huggingface_hub
b5ea024
over 1 year ago
raw
Copy download link
history
blame
Safe
154 Bytes
"use strict"
;
var
toInteger =
require
(
"./to-integer"
)
, max =
Math
.
max
;
module
.
exports
=
function
(
value
) {
return
max
(
0
,
toInteger
(value)); };