UNPKG

@studiometa/js-toolkit

Version:

A set of useful little bits of JavaScript to boost your project! 🚀

6 lines (5 loc) • 187 B
/** * Clamp a value in a given range. * @link https://js-toolkit.studiometa.dev/utils/math/clamp.html */ export declare function clamp(value: number, min: number, max: number): number;