As mentioned in #133, this fixes decimal values that include zeros that are not leading. I also added a test since this case had none. Please take a look below for an example of the fix.
// Before
n2words(' -12.606') === 'minus twelve point zero six hundred and six'
// After
n2words(' -12.606') === 'minus twelve point six hundred and six'
As mentioned in #133, this fixes decimal values that include zeros that are not leading. I also added a test since this case had none. Please take a look below for an example of the fix.