From 55835772ed365aa7eec47bb047b9ae1265fd714e Mon Sep 17 00:00:00 2001 From: Mueez Khan <30333942+rzmk@users.noreply.github.com> Date: Fri, 21 Jun 2024 01:32:09 -0400 Subject: [PATCH] docs: fix czv-wasm node-demo --- czv-wasm/examples/node-demo/sample.ts | 3 +++ 1 file changed, 3 insertions(+) diff --git a/czv-wasm/examples/node-demo/sample.ts b/czv-wasm/examples/node-demo/sample.ts index f969962..8197c19 100644 --- a/czv-wasm/examples/node-demo/sample.ts +++ b/czv-wasm/examples/node-demo/sample.ts @@ -1,3 +1,5 @@ +// See the README.md file in this file's folder +// for how to run this example import czv from "../../pkg/czv-ts"; const options: czv.RowCountOptions = { @@ -5,6 +7,7 @@ const options: czv.RowCountOptions = { apple,2.50 banana,3.00 strawberry,1.50`, + include_header_row: true }; const output: number = czv.rowCount(options);