We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 08ad2b7 commit 8b208d4Copy full SHA for 8b208d4
lib/json-2-csv.js
@@ -49,7 +49,6 @@ var convertData = function (data, keys) {
49
if (_.isArray(value)) { // We have an array of values
50
output.push((options.DELIMITER.WRAP || '') + '[' + value.join(options.DELIMITER.ARRAY) + ']' + (options.DELIMITER.WRAP || ''));
51
} else if (_.isDate(value)) { // If we have a date
52
- console.log(value, _.isDate(value))
53
output.push(value.toString());
54
} else if (_.isObject(value)) { // If we have an object
55
output.push(convertData(value, _.keys(value))); // Push the recursively generated CSV
0 commit comments