export default function clamp(min,value,max){if(value<min){return min;}if(value>max){return max;}return value;} //# sourceMappingURL=clamp.js.map