Skip to content

Commit 90fcb5f

Browse files
author
jumptuner
committed
remove logging
1 parent 5d0bece commit 90fcb5f

File tree

1 file changed

+1
-6
lines changed

1 file changed

+1
-6
lines changed

formatters/number.js

Lines changed: 1 addition & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -124,7 +124,7 @@ function formatN(d, precision) {
124124
}
125125

126126
/**
127-
*
127+
* ADL Modified to look more like carbone cloud api ie d, precisionOrFormat, currencyCode
128128
* @version 1.2.0
129129
*
130130
* Format currency numbers
@@ -162,11 +162,6 @@ function formatN(d, precision) {
162162
*
163163
*/
164164
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-
170165
// Default currency to USD if not provided
171166
var _currency = currencyCode || "USD";
172167

0 commit comments

Comments
 (0)