Skip to content

Commit 696eb3e

Browse files
committed
Fixing sublist on README
1 parent 9bdf8a5 commit 696eb3e

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

README.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -25,9 +25,9 @@ var converter = require('json-2-csv');
2525
* `array` - An array of JSON documents
2626
* `callback` - A function of the form `function (err, csv)`; This function will receive any errors and/or the CSV generated.
2727
* `options` - (Optional) A JSON document specifying any of {`DELIMITER`, `EOL`, `PARSE_CSV_NUMBERS`}
28-
** `DELIMITER` - String - Field Delimiter. Default: `','`
29-
** `EOL` - String - End of Line Delimiter. Default: `'\n'`
30-
** `PARSE_CSV_NUMBERS` - Boolean - Should numbers that are found in the CSV be converted to numbers? Default: `false`
28+
..* `DELIMITER` - String - Field Delimiter. Default: `','`
29+
..* `EOL` - String - End of Line Delimiter. Default: `'\n'`
30+
..* `PARSE_CSV_NUMBERS` - Boolean - Should numbers that are found in the CSV be converted to numbers? Default: `false`
3131

3232
##### json2csv Example:
3333

@@ -78,9 +78,9 @@ BMW,X5,2014,3287,M
7878
* `csv` - A string of CSV
7979
* `callback` - A function of the form `function (err, array)`; This function will receive any errors and/or the array of JSON documents generated.
8080
* `options` - (Optional) A JSON document specifying any of {`DELIMITER`, `EOL`, `PARSE_CSV_NUMBERS`}
81-
** `DELIMITER` - String - Field Delimiter. Default: `','`
82-
** `EOL` - String - End of Line Delimiter. Default: `'\n'`
83-
** `PARSE_CSV_NUMBERS` - Boolean - Should numbers that are found in the CSV be converted to numbers? Default: `false`
81+
..* `DELIMITER` - String - Field Delimiter. Default: `','`
82+
..* `EOL` - String - End of Line Delimiter. Default: `'\n'`
83+
..* `PARSE_CSV_NUMBERS` - Boolean - Should numbers that are found in the CSV be converted to numbers? Default: `false`
8484

8585
##### csv2json Example:
8686

0 commit comments

Comments
 (0)