From 06164bf9bea116f36f9117c073b457b603d378b0 Mon Sep 17 00:00:00 2001 From: Andrew Powell Date: Tue, 22 Oct 2019 09:16:15 -0400 Subject: [PATCH] docs: stripBomStream -> stripBom --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 4e66762..0384ba5 100644 --- a/README.md +++ b/README.md @@ -336,7 +336,7 @@ const csv = require('csv-parser'); const stripBom = require('strip-bom-stream'); fs.createReadStream('data.csv') - .pipe(stripBomStream()) + .pipe(stripBom()) .pipe(csv()) ... ```