UNPKG

@andrew-codes/color-functions

Version:

Collection of functions to manipulate colors in JavaScript

1 lines 174 B
"use strict";Object.defineProperty(exports,"__esModule",{value:true});exports.default=function(value,min,max){if(value>max){return max}if(value<min){return min}return value};