ext-utils/math.js

4 lines
85 B
JavaScript

module.exports = {
clamp: ( v, min, max ) => Math.max( min, Math.min( v, max ) )
};