import { parse } from "https://deno.land/std@0.210.0/csv/mod.ts";
Csv parse helper to manipulate data. Provides an auto/custom mapper for columns.
Examples
Example 1
Example 1
import { parse } from "https://deno.land/std@0.210.0/csv/parse.ts";
const string = "a,b,c\nd,e,f";
console.log(
await parse(string, {
skipFirstRow: false,
}),
);
// output:
// [["a", "b", "c"], ["d", "e", "f"]]
Type Parameters
T extends ParseOptions
Parameters
opt: T