NeahFront7/node_modules/date-fns/_lib/roundingMethods.mjs
2025-04-10 18:14:28 +02:00

4 lines
91 B
JavaScript

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