We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5d0bece commit 90fcb5fCopy full SHA for 90fcb5f
formatters/number.js
@@ -124,7 +124,7 @@ function formatN(d, precision) {
124
}
125
126
/**
127
- *
+ * ADL Modified to look more like carbone cloud api ie d, precisionOrFormat, currencyCode
128
* @version 1.2.0
129
*
130
* Format currency numbers
@@ -162,11 +162,6 @@ function formatN(d, precision) {
162
163
*/
164
function formatC(d, precisionOrFormat, currencyCode) {
165
- if (d !== null) console.log("formatC d:", d);
166
- if (precisionOrFormat !== null)
167
- console.log("formatC precisionOrFormat:", precisionOrFormat);
168
- if (currencyCode !== null) console.log("formatC currencyCode:", currencyCode);
169
-
170
// Default currency to USD if not provided
171
var _currency = currencyCode || "USD";
172
0 commit comments