Whether to return column offsets in the offsets array.
If false, the returned offsets array contains just the row offsets. If true, the returned offsets array contains all column offsets for each column in the rows (i.e., it has nrows*ncols entries). Individual rows will have empty columns added or extra columns merged into the last column if they do not have exactly ncols columns.
The data to parse.
Optional
delimiterThe delimiter to use. Defaults to ','.
Optional
maxMaximum number of rows to parse.
If this is not given, parsing proceeds to the end of the data.
Optional
ncolsNumber of columns in each row to parse.
If this is not given, the ncols defaults to the number of columns in the first row.
Optional
quoteOptional
rowThe row delimiter to use. Defaults to '\r\n'.
Optional
startThe starting index in the string for processing. Defaults to 0. This index should be the first character of a new row. This must be less than data.length.
The options for a parser.