mirror of
https://github.com/denoland/deno.git
synced 2024-12-25 00:29:09 -05:00
docs(std/encoding/csv): update the usage of ParseOptions (#7857)
This commit is contained in:
parent
a09f4a4abd
commit
b5f06adbf3
1 changed files with 1 additions and 1 deletions
|
@ -87,7 +87,7 @@ const string = "a,b,c\nd,e,f";
|
||||||
|
|
||||||
console.log(
|
console.log(
|
||||||
await parse(string, {
|
await parse(string, {
|
||||||
header: false,
|
skipFirstRow: false,
|
||||||
}),
|
}),
|
||||||
);
|
);
|
||||||
// output:
|
// output:
|
||||||
|
|
Loading…
Reference in a new issue