question-mark
Stuck on an issue?

Lightrun Answers was designed to reduce the constant googling that comes with debugging 3rd party libraries. It collects links to all the places you might be looking at while hunting down a tough bug.

And, if you’re still stuck at the end, we’re happy to hop on a call to see how we can help out.

Option to Remove `.00`

See original GitHub issue

It would be nice if there was a option to remove zero cents, but leave cents if there was a value.

30 > $30
12.43 > $12.43
12.43543 > $12.43543
12.0000 > $12

Issue Analytics

  • State:open
  • Created 7 years ago
  • Reactions:4
  • Comments:8 (4 by maintainers)

github_iconTop GitHub Comments

7reactions
smirzaeicommented, Feb 3, 2017

Great suggestion, this should work for now until I get the chance to add the option.

function precision(value) {
    return value % 1 === 0 ? 0 : null
}

currencyFormatter.format(price, { code: 'USD', precision: precision(price) })
1reaction
sanjeevkpanditcommented, Apr 5, 2017

@smirzaei Got it. Thanks for clearing this out for me.

Read more comments on GitHub >

github_iconTop Results From Across the Web

How to Remove Leading Zeros in Excel (5 Easy Ways)
In this Excel tutorial, I will show you how to remove the leading zeros in your numbers in ... Convert the Text to...
Read more >
3 ways to suppress zero in Excel - TechRepublic
The easiest method to suppress zeros in Excel is a simple setting with an all-or-nothing result, which is both a pro and a...
Read more >
Display or hide zero values in Excel for Mac - Microsoft Support
Hide zero values that are returned by a formula​​ Follow these steps: Select the cells that contain a zero (0) value. On the...
Read more >
How to Remove Leading Zeros in Excel (7 Super Easy Ways)
Our techniques to remove leading zeros from numeric values involve using the error checking option, the VALUE function, Text to Columns, and VBA,...
Read more >
How to Remove 0 from Excel (7 Methods) - ExcelDemy
7 Easy Methods to Remove 0 from Excel · 1. Apply Find and Replace Option to delete 0 from Excel · 3. Erase...
Read more >

github_iconTop Related Medium Post

No results found

github_iconTop Related StackOverflow Question

No results found

github_iconTroubleshoot Live Code

Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start Free

github_iconTop Related Reddit Thread

No results found

github_iconTop Related Hackernoon Post

No results found

github_iconTop Related Tweet

No results found

github_iconTop Related Dev.to Post

No results found

github_iconTop Related Hashnode Post

No results found