-
Hi,
I am using CSVtoJSON data processing option before streaming data with comma as delimiter. I am encountering an issue where Agent truncates values when there are commas in values. Any ideas on …
-
I have done this:
```
npm i csvtojson -D
npm i @types/csvtojson -D
```
In my typescript file:
```
import * as csvtojson from 'csvtojson;
csvtojson().fromFile(csvFilePath)
```
In my con…
-
Following config is not working properly when setting the output to `csv`
```js
const csvtojson = require('csvtojson');
csvtojson({
noheader: true,
output: 'csv',
ignoreEmpty: true,
c…
-
### Problem:
Manually searching and following hundreds of accounts from the fediverse instances is a bad UX. Additionally, there's no straightforward way to export followed accounts from the reader i…
-
Noticed from https://github.com/nuxt/nuxt.js/issues/14558 that we have problematic dependencies such as `csvtojson` that do not work well with worker platforms such as cloudflare workers.
Issue wi…
-
Thanks for creating and maintaining this package, it looks very useful! Just a small suggestion from a newcomer who had a rather bumpy time getting started. I tried:
$ csvtojson --noheader fi…
-
JKrag updated
7 years ago
-
Hello! I use npm only without webpack and other. I need to use csvtojson to convert csv in my app, but it dont works. I become this error:
Error: Cannot find module 'fs'
▶ 2 stack frames were col…
-
It seems like it should be possible to configure the nested object mapping using the existing header names initialization/configuration of csvtojson without renaming the source header row in the CSV i…
-
I am going to create method to read cvs files by url and using csvtojson But when I used request.get I will get Argument of type 'string' is not assignable to parameter of type 'Readable'. I create do…