json-csv-nested
v1.0.1
Published
Convert nested JSON to CSV.
Downloads
3
Readme
Usage
const convertJSONtoCSV = require('json-csv-nested')
const items = [
{
downloaded: false,
contact: {
company: 'New Widgets, Inc',
name: 'John Smith',
email: '[email protected]',
phone: '+1-123-456-7890',
},
registration: {
year: 2013,
level: 3,
},
},
{
downloaded: true,
contact: {
company: 'New Sprockets, LLC',
name: 'Jane Smith',
email: '[email protected]',
phone: '+1-987-654-3210',
},
registration: {
year: 2013,
level: 2,
},
},
];
const csvData = convertJSONtoCSV(items);
console.log(csvData);