4 lines
85 B
JavaScript
4 lines
85 B
JavaScript
|
module.exports = {
|
||
|
clamp: ( v, min, max ) => Math.max( min, Math.min( v, max ) )
|
||
|
};
|