JFIFxxC      C  " }!1AQa"q2#BR$3br %&'()*456789:CDEFGHIJSTUVWXYZcdefghijstuvwxyz w!1AQaq"2B #3Rbr{ gilour

File "clamp.ts"

Full Path: /home/markqprx/iniasli.pro/resources/client/utils/number/clamp.ts
File size: 109 bytes
MIME-type: text/plain
Charset: utf-8

export function clamp(num: number, min: number, max: number) {
  return Math.min(Math.max(num, min), max);
}