docs(encoding): remove await (#2831)

This commit is contained in:
李瑞丰 2022-11-04 19:42:07 +08:00 committed by GitHub
parent 241e7eb8f9
commit fea04e5247
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -184,7 +184,7 @@ import { parse } from "https://deno.land/std@$STD_VERSION/encoding/csv.ts";
const string = "a,b,c\nd,e,f";
console.log(
await parse(string, {
parse(string, {
skipFirstRow: false,
}),
);