Neah_Front/node_modules/date-fns/_lib/roundingMethods.js
2025-04-08 14:45:23 +02:00

7 lines
146 B
JavaScript

"use strict";
exports.getRoundingMethod = getRoundingMethod;
function getRoundingMethod(method) {
return method ? Math[method] : Math.trunc;
}