UNPKG

color2k

Version:

a color parsing and manipulation lib served in roughly 2kB

10 lines (9 loc) 191 B
/** * A simple guard function: * * ```js * Math.min(Math.max(low, value), high) * ``` */ declare function guard(low: number, high: number, value: number): number; export default guard;