deno.land / x / froebel@v0.23.2 / clamp.ts

نووسراو ببینە
1
2
3
4
5
6
7
8
/** Clamp `num` between `min` and `max` inclusively. */const clamp = (min: number, num: number, max: number) => { if (min > max) [min, max] = [max, min]; return Math.max(Math.min(num, max), min);};
export default clamp;
froebel

Version Info

Tagged at
a year ago