7 lines
146 B
JavaScript
7 lines
146 B
JavaScript
"use strict";
|
|
exports.getRoundingMethod = getRoundingMethod;
|
|
|
|
function getRoundingMethod(method) {
|
|
return method ? Math[method] : Math.trunc;
|
|
}
|