Hugging Face
Models
Datasets
Spaces
Community
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
openfree
/
graphite2
like
0
Sleeping
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
main
graphite2
/
frontend
/
src
/
utility-functions
/
math.ts
openfree
Deploy from GitHub repository
2409829
verified
22 days ago
raw
Copy download link
history
blame
contribute
delete
Safe
112 Bytes
export
function
clamp
(
value:
number
, min =
0
, max =
1
):
number
{
return
Math
.
max
(min,
Math
.
min
(value, max));
}