Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

numeral(-0.01775).format('0.0000') => -0.0177 #714

Open
zhengpingwu opened this issue May 21, 2021 · 1 comment
Open

numeral(-0.01775).format('0.0000') => -0.0177 #714

zhengpingwu opened this issue May 21, 2021 · 1 comment

Comments

@zhengpingwu
Copy link

zhengpingwu commented May 21, 2021

numeral(0.01775).format('0.0000') // 0.0178
numeral(-0.01775).format('0.0000') // -0.0177 it's error, -0.0178 is right
numeral(-0.01776).format('0.0000') // -0.0178

@hlwen
Copy link

hlwen commented Nov 4, 2023

Add the following code before executing

Number.prototype.toFixed = function (d) {
  var s = this + "";
  if (!d) d = 0;
  if (s.indexOf(".") == -1) s += ".";
  s += new Array(d + 1).join("0");
  if (new RegExp("^(-|\\+)?(\\d+(\\.\\d{0," + (d + 1) + "})?)\\d*$").test(s)) {
    var s = "0" + RegExp.$2,
      pm = RegExp.$1,
      a = RegExp.$3.length,
      b = true;
    if (a == d + 2) {
      a = s.match(/\d/g);
      if (parseInt(a[a.length - 1]) > 4) {
        for (var i = a.length - 2; i >= 0; i--) {
          a[i] = parseInt(a[i]) + 1;
          if (a[i] == 10) {
            a[i] = 0;
            b = i != 1;
          } else break;
        }
      }
      s = a.join("").replace(new RegExp("(\\d+)(\\d{" + d + "})\\d$"), "$1.$2");

    }
    if (b) s = s.substr(1);
    return (pm + s).replace(/\.$/, "");
  }
  return this + "";
}

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants