<b>Usage Example 01: (Direct export to CSV file)</b>\
var npmJson2csv = require("npm-json2csv")\
var arrayOfObjects = [{ "id": 28, "Title": "Sweden" }, { "id": 56, "Title": "USA" }];
\\\\json2csvfile(JSONArray,filename,FieldArray)\
npmJson2csv.json2csvfile(arrayOfObjects,"./test3",["Title"]) <br><br>
<b>Usage Example 02: (Get String conversion of JSON in CSV format )</b>\
var npmJson2csv = require("npm-json2csv")\
var arrayOfObjects = [{ "id": 28, "Title": "Sweden" }, { "id": 56, "Title": "USA" }];\
\\\\convertToCSV (JSONArray,FieldArray)\
var output=npmJson2csv.convertToCSV (arrayOfObjects,["Title"]);<br><br>
<i>FieldArray field is optional , which will limit the CSV to only given coloumns.</i>

