UNPKG

@hitachivantara/uikit-react-utils

Version:
7 lines (6 loc) 206 B
"use strict"; Object.defineProperty(exports, Symbol.toStringTag, { value: "Module" }); const clamp = (value, max = 100, min = 0) => { return Math.min(Math.max(value, min), max); }; exports.clamp = clamp;