NeahFront2/node_modules/date-fns/_lib/roundingMethods.mjs
2025-04-08 20:36:59 +02:00

4 lines
91 B
JavaScript

export function getRoundingMethod(method) {
return method ? Math[method] : Math.trunc;
}