1
0
Fork 0
mirror of https://github.com/denoland/deno.git synced 2024-12-23 23:59:59 -05:00

docs(std/encoding/csv): update the usage of ParseOptions (#7857)

This commit is contained in:
Cedric Vangout 2020-10-07 18:01:35 +02:00 committed by GitHub
parent a09f4a4abd
commit b5f06adbf3
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -87,7 +87,7 @@ const string = "a,b,c\nd,e,f";
console.log(
await parse(string, {
header: false,
skipFirstRow: false,
}),
);
// output: