FrontPastel/node_modules/@mui/base/unstable_useNumberInput/utils.js

16 lines
627 B
JavaScript
Raw Normal View History

2024-04-17 13:55:11 +00:00
import { clamp } from '@mui/utils';
export function clampStepwise(val, min = Number.MIN_SAFE_INTEGER, max = Number.MAX_SAFE_INTEGER, stepProp = NaN) {
if (Number.isNaN(stepProp)) {
return clamp(val, min, max);
}
const step = stepProp || 1;
const remainder = val % step;
const positivity = Math.sign(remainder);
if (Math.abs(remainder) > step / 2) {
return clamp(val + positivity * (step - Math.abs(remainder)), min, max);
}
return clamp(val - positivity * Math.abs(remainder), min, max);
}
export function isNumber(val) {
return typeof val === 'number' && !Number.isNaN(val) && Number.isFinite(val);
}