Mission Control Dashboard - Initial implementation
This commit is contained in:
10
node_modules/motion-utils/dist/es/clamp.mjs
generated
vendored
Normal file
10
node_modules/motion-utils/dist/es/clamp.mjs
generated
vendored
Normal file
@@ -0,0 +1,10 @@
|
||||
const clamp = (min, max, v) => {
|
||||
if (v > max)
|
||||
return max;
|
||||
if (v < min)
|
||||
return min;
|
||||
return v;
|
||||
};
|
||||
|
||||
export { clamp };
|
||||
//# sourceMappingURL=clamp.mjs.map
|
||||
Reference in New Issue
Block a user