UNPKG

934 BJSONView Raw
1{
2 "errors" : {
3
4 "callbackRequired": "A callback is required!",
5 "optionsRequired": "Options were not passed and are required.",
6
7 "json2csv": {
8 "cannotCallOn": "Cannot call json2csv on ",
9 "dataCheckFailure": "Data provided was not an array of documents.",
10 "notSameSchema": "Not all documents have the same schema."
11 },
12
13 "csv2json": {
14 "cannotCallOn": "Cannot call csv2json on ",
15 "dataCheckFailure": "CSV is not a string."
16 }
17
18 },
19
20 "defaultOptions" : {
21 "delimiter" : {
22 "field" : ",",
23 "wrap" : "\"",
24 "eol" : "\n"
25 },
26 "excelBOM": false,
27 "prependHeader" : true,
28 "trimHeaderFields": false,
29 "trimFieldValues" : false,
30 "sortHeader" : false,
31 "parseCsvNumbers" : false,
32 "keys" : null,
33 "checkSchemaDifferences": false,
34 "expandArrayObjects": false,
35 "unwindArrays": false
36 },
37
38 "values" : {
39 "excelBOM": "\ufeff"
40 }
41}