UNPKG
chromatism2
Version:
latest (3.0.2)
3.0.2
3.0.1
A simple set of utility functions for colours.
github.com/tehshrike/chromatism
tehshrike/chromatism
chromatism2
/
src
/
helpers
/
bounded.js
9 lines
(8 loc)
•
159 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
9
export default function bounded (
val
, range) {
if
(
val
< range[
0
]) {
val
= range[
0
] }
else
if
(
val
> range[
1
]) {
val
= range[
1
] }
return
val
}