A string, which must be in the comma-separated values format.
Parses the specified string, which must be in the comma-separated values format, returning an array of objects representing the parsed rows.
Unlike csvParseRows, this method requires that the first line of the CSV content contains a comma-separated list of column names; these column names become the attributes on the returned objects.
The returned array also exposes a columns property containing the column names in input order (in contrast to Object.keys, whose iteration order is arbitrary).
Equivalent to dsvFormat(",").parse
.
Note: requires unsafe-eval content security policy.
A string, which must be in the comma-separated values format.
A row conversion function which is invoked for each row, being passed an object representing the current row (d), the index (i) starting at zero for the first non-header row, and the array of column names. If the returned value is null or undefined, the row is skipped and will be omitted from the array returned by dsv.parse; otherwise, the returned value defines the corresponding row object. In effect, row is similar to applying a map and filter operator to the returned rows.
Parses the specified string, which must be in the comma-separated values format, returning an array of objects representing the parsed rows.
Unlike csvParseRows, this method requires that the first line of the CSV content contains a comma-separated list of column names; these column names become the attributes on the returned objects.
The returned array also exposes a columns property containing the column names in input order (in contrast to Object.keys, whose iteration order is arbitrary).
Equivalent to
dsvFormat(",").parse
. Note: requires unsafe-eval content security policy.