chomens-bot-js/util/clamp.js
ChomeNS 0310622870 add a working tpsbar
idea totallynotskidded™ from evilbot and he said im a skid which
is real i guess
2023-03-15 20:52:30 +07:00

6 lines
121 B
JavaScript

function clamp (value, min, max) {
if (value < min) return min
return Math.min(value, max)
}
module.exports = clamp