Files
HRM-System/node_modules/es-toolkit/dist/compat/math/round.mjs
2026-04-13 08:19:53 +08:00

8 lines
180 B
JavaScript

import { decimalAdjust } from '../_internal/decimalAdjust.mjs';
function round(number, precision = 0) {
return decimalAdjust('round', number, precision);
}
export { round };