NeahFront3/node_modules/date-fns/_lib/roundingMethods.js
2025-04-09 18:02:58 +02:00

7 lines
146 B
JavaScript

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