We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 44522d0 commit e17241aCopy full SHA for e17241a
formatters/number.js
@@ -155,7 +155,7 @@ function formatN (d, precision) {
155
*
156
*/
157
function formatC (d, precisionOrFormat) {
158
- if (d == null) let a=3;
+ if (d !== null) console.log("formatC");
159
if (d !== null && typeof d !== 'undefined') {
160
var _locale = locale[this.lang] || locale.en; // TODO optimize, this test should be done before
161
var _currency = this.modifiedCurrencyTarget || this.currency.target;
0 commit comments