tflori / angular-translator

translation module for angular
https://tflori.github.io/angular-translator/
MIT License
21 stars 6 forks source link

<number>0 get converted to empty string #31

Closed tflori closed 7 years ago

tflori commented 7 years ago

When you have {{count}} in your translation and count is 0 then it gets replaced by empty string. It should be 0 instead. A JavaScript and/or TypeScript developer expecting this behaviour:

node:

$ node
> String(0)
'0'
> ''+0
'0'