_decimal-adjust.js 167 B

123456
  1. "use strict";
  2. module.exports = function (t, a) {
  3. // Just sanity check, as real tests are in 'round', 'ceil' and 'floor' variants
  4. a(t("round")(55.55, -1), 55.6);
  5. };