We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Describe the bug I try to replace the default fieldSeparator by ";" but the output still use ","
To Reproduce
const config = mkConfig( { useKeysAsHeaders: true, fieldSeparator: ";", showColumnHeaders: false, filename : "xxxxxxxxx.xsv" } );
download(config)(data);
Expected behavior I expect the downloaded file to have field separated by a ";"
The text was updated successfully, but these errors were encountered:
Could you share which version of the library and which browser(s) you're running? I can't replicate this behaviour.
Here's a stackblitz example running v1.2.4: https://stackblitz.com/edit/vitejs-vite-e1whts?file=src%2Fmain.ts
v1.2.4
Sorry, something went wrong.
I'm going to close this for now since I can't reproduce it. If the issue persists or comes back, feel free to open another issue with more details 😄
No branches or pull requests
Describe the bug
I try to replace the default fieldSeparator by ";" but the output still use ","
To Reproduce
const config = mkConfig(
{
useKeysAsHeaders: true,
fieldSeparator: ";",
showColumnHeaders: false,
filename : "xxxxxxxxx.xsv"
}
);
download(config)(data);
Expected behavior
I expect the downloaded file to have field separated by a ";"
The text was updated successfully, but these errors were encountered: