clipper/frontend/src/helpers/constrainNumeric.ts

12 lines
178 B
TypeScript

function constrainNumeric(x: number, max: number): number {
if (x < 0) {
return 0;
}
if (x > max) {
return max;
}
return x;
}
export default constrainNumeric;