UNPKG

froebel

Version:
4 lines (3 loc) 150 B
/** Clamp `num` between `min` and `max` inclusively. */ declare const clamp: (min: number, num: number, max: number) => number; export default clamp;