I want an angular currency pipe to transcribe a number into czk currency in this way:
- 1000 => 1 000 Kč
- 3141592653589 => 3 141 592 653 589 Kč
- 4 => 4 Kč
The pipe should also ensure, that the spaces between digits will never cause a line break between the digits for example by inserting a non-breaking space. I have guaranteed that there are no decimals.
How can I do that?