From 4d1c557f92a4371715de528230b53d20c4c1eccb Mon Sep 17 00:00:00 2001 From: Aidan Feldman Date: Fri, 26 Jul 2019 07:36:18 -0400 Subject: [PATCH] correct the import documentation --- readme.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/readme.md b/readme.md index 8fff914..937491d 100644 --- a/readme.md +++ b/readme.md @@ -674,7 +674,7 @@ If a module packager is preferred, just simply `require("csvtojson")`: var csv=require("csvtojson"); // or with import -import * as csv from "csvtojson"; +import { csv } from "csvtojson"; -//then use csv as normal +// then use csv as normal ```