number.js 211 B

1234567
  1. /**
  2. * Clamp number within the inclusive range within the lower and upper bounds.
  3. */
  4. export function clamp(v, lower, upper) {
  5. return Math.max(lower, Math.min(v, upper));
  6. }
  7. //# sourceMappingURL=number.js.map