UNPKG
lib-colors
Version:
latest (0.2.1)
0.2.1
0.2.0
0.1.1
0.1.0
0.0.2
0.0.1
Simple node.js library for work with colors
github.com/fwmakc/lib-colors
fwmakc/lib-colors
lib-colors
/
src
/
helpers
/
clamp.helper.ts
4 lines
(3 loc)
•
121 B
text/typescript
View Raw
1
2
3
4
export
function
clamp
(
value
:
number
,
min
:
number
,
max
:
number
):
number
{
return
Math
.
min
(
Math
.
max
(value, min), max); }