| language | en |
|---|---|
| layout | page |
| title | Parsing |
| date | 2013-07-17 08:03:53 UTC |
| comments | false |
| sharing | false |
| footer | false |
| navigation | csv |
| github | https://github.com/wdavidw/node-csv |
| source | ./src/parser.coffee |
The library extend the EventEmitter and emit the following events:
- row
Emitted by the parser on each line with the line content as an array of fields. - end
Emitted when no more data will be parsed. - error
Emitted when an error occured.
Parse a string which may hold multiple lines. Private state object is enriched on each character until transform is called on a new line.