UNPKG

216 BPlain TextView Raw
1export namespace Utils {
2 /**
3 * Clamp a dimension value to an integer >= 0.
4 */
5 export function clampDimension(value: number): number {
6 return Math.max(0, Math.floor(value));
7 }
8}
9
10export default Utils;