UNPKG

lib-colors

Version:

Simple node.js library for work with colors

7 lines (6 loc) 184 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.clamp = clamp; function clamp(value, min, max) { return Math.min(Math.max(value, min), max); }