SelectModel fixed

This commit is contained in:
barsdeveloper
2021-09-30 17:37:26 +02:00
parent d3ce39ae68
commit 01c3147baa
6 changed files with 262 additions and 210 deletions

5
js/Utility.js Normal file
View File

@@ -0,0 +1,5 @@
export default class Utility {
static clamp(val, min, max) {
return Math.min(Math.max(val, min), max)
}
}