Skip to content

Commit 8b208d4

Browse files
committed
Removing console.log from json-2-csv -- #11
1 parent 08ad2b7 commit 8b208d4

File tree

1 file changed

+0
-1
lines changed

1 file changed

+0
-1
lines changed

lib/json-2-csv.js

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,6 @@ var convertData = function (data, keys) {
4949
if (_.isArray(value)) { // We have an array of values
5050
output.push((options.DELIMITER.WRAP || '') + '[' + value.join(options.DELIMITER.ARRAY) + ']' + (options.DELIMITER.WRAP || ''));
5151
} else if (_.isDate(value)) { // If we have a date
52-
console.log(value, _.isDate(value))
5352
output.push(value.toString());
5453
} else if (_.isObject(value)) { // If we have an object
5554
output.push(convertData(value, _.keys(value))); // Push the recursively generated CSV

0 commit comments

Comments
 (0)