UNPKG

@helpwave/hightide

Version:

helpwave's component and theming library

8 lines 165 B
// src/util/math.ts var clamp = (value, min = 0, max = 1) => { return Math.min(Math.max(value, min), max); }; export { clamp }; //# sourceMappingURL=math.mjs.map