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
In the documentation you have the following example:
var Format = wNumb({
prefix: '$',
postfix: ',-',
thousand: ','
});
Format.to ( '90000' );
=> '$90,000,-'
Running it, instead of returning the desired result '$90,000,-', it returns false.
Also, the case is not covered by your tests. https://jsfiddle.net/1ho4LsjL/
The text was updated successfully, but these errors were encountered:
In the documentation you have the following example:
Running it, instead of returning the desired result
'$90,000,-'
, it returnsfalse
.Also, the case is not covered by your tests.
https://jsfiddle.net/1ho4LsjL/
The text was updated successfully, but these errors were encountered: