mirror of
https://github.com/ChomeNS/chomens-bot-mc.git
synced 2024-11-13 18:34:54 -05:00
0310622870
idea totallynotskidded™ from evilbot and he said im a skid which is real i guess
6 lines
121 B
JavaScript
6 lines
121 B
JavaScript
function clamp (value, min, max) {
|
|
if (value < min) return min
|
|
return Math.min(value, max)
|
|
}
|
|
|
|
module.exports = clamp
|