diff options
author | Cedric Vangout <mail@cvng.dev> | 2020-10-07 18:01:35 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-10-07 18:01:35 +0200 |
commit | b5f06adbf37aa44929d41536186ab07b95b06e62 (patch) | |
tree | 4c18ab3fbcd9ee74448bb9ffe839531bb56a55f9 /std/encoding | |
parent | a09f4a4abd5a9b537604cbf44416deaae29d87ad (diff) |
docs(std/encoding/csv): update the usage of ParseOptions (#7857)
Diffstat (limited to 'std/encoding')
-rw-r--r-- | std/encoding/README.md | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/std/encoding/README.md b/std/encoding/README.md index 80533768e..a165af072 100644 --- a/std/encoding/README.md +++ b/std/encoding/README.md @@ -87,7 +87,7 @@ const string = "a,b,c\nd,e,f"; console.log( await parse(string, { - header: false, + skipFirstRow: false, }), ); // output: |