-
I'm facing an issue, when I use "checkColumn: true", end or end_parsed is not emitted. I do see errors for the records (on error) not parsed correctly. But need "end" event to do the response.
If i…
-
My csv file is as follows:
```
id, name
1, Alice
2, Bob
```
For some reason `end_parsed` event never gets fired.
```
var converter = new Converter({
constuctResult: true,
delimiter: ',',
trim…
-
Pausing a stream() doesn't seem to have an effect - The parser proceeds reading the CSV as usual.
Take for example the following code:
```javascript
const rs = fs.createReadStream(this.csvPath)…
-
**Sample CSV Records**
```
ID FIELDVALUE TRANSLATIONVALUE
1 1 1 GB
2 2 2gig
3 4 4gig
4 8 8gig
5 AA AA Batteries
6 AAA AAA Batteries
```
So if I console.log after every record is parsed I get…
-
Node version 7.8.0
node-inspector version 1.0.0
When I use --debug-brk, with web debugger open, js continue executing .
If I don't open node-inspector, js executing will pause when using --debu…
PrinC updated
7 years ago
-
Hi,
I am trying to pipe the converter result into a MongoDb bulk insert:
`rs.pipe(converter).pipe(bulkWriter);`
MongoDb insert fails:
`MongoError: error parsing element 0 of field documents :: caused…
-
It appears that the options `delimiter: 'auto'`, and `noheader: true` are not compatible with each other - csvtojson seems to decide to use "," as the delimiter in this case instead of detecting it in…
-
My program need to parse two csv files that are stored in a json object :
``` js
csv_files = [
{
"name" : "",
"file" : "./file.csv"
…
-
Ive spent over an hour, still cannot get it up and running
webpack
```
new webpack.ProvidePlugin({
$: "jquery",
jQuery: "jquery"
})
```
package.json
```
"de…
-
Currently, we only have PHPUnit tests for the CSV single-file fetcher. We should add tests for all of the CSV toolchains that test filegetters and writers as well.