Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

parse-csv-simple

Package Overview
Dependencies
Maintainers
1
Versions
6
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

parse-csv-simple - npm Package Compare versions

Comparing version 1.0.0 to 1.0.2

5

dist/index.js

@@ -22,6 +22,1 @@ "use strict";

exports.parseIterable = parseIterable;
const specialCsvText = `name,remark
weilei,"good, work"
panda,"hello ""panda\nmonkey"""
`;
parse(specialCsvText);

7

package.json
{
"name": "parse-csv-simple",
"version": "1.0.0",
"version": "1.0.2",
"description": "A parser for csv file.",

@@ -25,8 +25,5 @@ "main": "dist/index.js",

"chai": "^4.3.4",
"mocha": "^9.0.2"
},
"dependencies": {
"ts-node": "^10.1.0",
"mocha": "^9.0.2",
"typescript": "^4.3.5"
}
}
# parse-csv-simple
A parser for csv file.
## Usage
Import the library in your code
```js
var {parse} = require('parse-csv-simple');
var csvText = 'csv text ...';
parse(csvText);
```

@@ -21,6 +21,1 @@ import { Parser } from "./parser";

}
const specialCsvText = `name,remark
weilei,"good, work"
panda,"hello ""panda\nmonkey"""
`;
parse(specialCsvText);
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