UNPKG
@polgubau/utils
Version:
latest (1.0.3)
1.0.3
1.0.2
1.0.1
1.0.0
A collection of utility functions for TypeScript
github.com/PolGubau/utils
PolGubau/utils
@polgubau/utils
/
dist
/
esm
/
numbers
/
clamp
/
clamp.mjs
11 lines
•
242 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
9
10
11
// src/numbers/clamp/clamp.ts
function
clamp
(
value, bound1, bound2
) {
if
(bound2 ==
null
) {
return
Math
.
min
(value, bound1); }
return
Math
.
min
(
Math
.
max
(value, bound1), bound2); }
export
{ clamp };
//# sourceMappingURL=clamp.mjs.map