You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I would like to keep the amount formatted to the second digit, $0.995 to be $0.99 but the numbro rounds it to $1.00.
What I use: numbro(0.995).formatCurrency({ mantissa: 2 });
I would like to keep the amount formatted to the second digit, $0.995 to be $0.99 but the numbro rounds it to $1.00.
What I use:
numbro(0.995).formatCurrency({ mantissa: 2 });Thank you in advanced!