1.0.1 • Published 11 months ago

json-csv-nested v1.0.1

Weekly downloads
-
License
MIT
Repository
github
Last release
11 months ago

Usage

const convertJSONtoCSV = require('json-csv-nested')

const items = [
  {
    downloaded: false,
    contact: {
      company: 'New Widgets, Inc',
      name: 'John Smith',
      email: 'john@example.com',
      phone: '+1-123-456-7890',
    },
    registration: {
      year: 2013,
      level: 3,
    },
  },
  {
    downloaded: true,
    contact: {
      company: 'New Sprockets, LLC',
      name: 'Jane Smith',
      email: 'jane@example.com',
      phone: '+1-987-654-3210',
    },
    registration: {
      year: 2013,
      level: 2,
    },
  },
];


const csvData = convertJSONtoCSV(items);

console.log(csvData);
1.0.1

11 months ago

1.0.0

11 months ago