ibms-dome/ibms_react/src/utils/math.js
2023-01-31 23:15:50 +08:00

4 lines
83 B
JavaScript

export const roundDecimal = (value) => {
return parseFloat(value).toFixed(2);
};