UNPKG

lib-colors

Version:

Simple node.js library for work with colors

4 lines (3 loc) 121 B
export function clamp(value: number, min: number, max: number): number { return Math.min(Math.max(value, min), max); }