NeahFront5/node_modules/date-fns/_lib/roundingMethods.mjs
2025-04-10 11:30:00 +02:00

4 lines
91 B
JavaScript

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