discourse/app/assets/javascripts/discourse/lib/round.js.es6
Régis Hanol b25a16ee3e FEATURE: 2 new reports: time to first response, topics with no response
FIX: relativeAgeMediumSpan was off by 1
REFACTOR: extracted decimalAdjust & round functions from the poll plugin
2015-06-22 19:46:51 +02:00

6 lines
144 B
JavaScript

import decimalAdjust from "discourse/lib/decimal-adjust";
export default function(value, exp) {
return decimalAdjust("round", value, exp);
}