Socket
Socket
Sign inDemoInstall

fast-csv

Package Overview
Dependencies
Maintainers
2
Versions
73
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

fast-csv - npm Package Compare versions

Comparing version 3.0.1 to 3.0.2

_config.yml

8

History.md

@@ -0,1 +1,9 @@

# v3.0.2
* Update lodash to address [#260](https://github.com/C2FO/fast-csv/pull/260)
# v3.0.1
* Update `.npmignore` to not exclude build directory
# v3.0.0

@@ -2,0 +10,0 @@

4

package.json
{
"name": "fast-csv",
"version": "3.0.1",
"version": "3.0.2",
"description": "CSV parser and writer",

@@ -56,4 +56,4 @@ "main": "./build/src/index.js",

"@types/node": "^12.0.2",
"lodash": "^4.17.11"
"lodash": "^4.17.13"
}
}

@@ -27,4 +27,4 @@ [![npm version](https://img.shields.io/npm/v/fast-csv.svg)](https://www.npmjs.org/package/fast-csv)

fs.createReadStream('path/to/my.csv')
.pipe(csv.parse({ headers: true })
.on('data' row => console.log(row))
.pipe(csv.parse({ headers: true }))
.on('data', row => console.log(row))
```

@@ -46,3 +46,6 @@

### Migrating from older versions
* [From `v2.x` to `v3.x`](./docs/migration_guide.md#from-v2x-to-v3x)
## License

@@ -49,0 +52,0 @@

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc