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
Hello, while attempting to use this library, I came across an issue.
Perhaps because of the way I was importing it, but I could not get LocalChunkSize, or RemoteChunkSize to work. (Bug #674)
LocalChunkSize
RemoteChunkSize
const Papa = require("papaparse"); Papa.LocalChunkSize = 1024 * 1024; Papa.parse(localBlob, { chunk: function(...){...} });
Results in the entire file read in a single chunk.
However, after reading the code, this works:
const Papa = require("papaparse"); Papa.parse(localBlob, { chunkSize: 1024 * 1024, chunk: function(...){...} });
This is not in the online documentation, and it really should be!
PS: Everything else is done by passing options, why does LocalChunkSize and RemoteChunkSize even exist?
The text was updated successfully, but these errors were encountered:
Thanks for reporting the issue.
Our documentation is on the docs folder of this repository. So it will be great if you can provide a PR documenting this issue.
Sorry, something went wrong.
Add documentation for chunkSize (#818)
12bf28a
closes #673
Successfully merging a pull request may close this issue.
Hello, while attempting to use this library, I came across an issue.
Perhaps because of the way I was importing it, but I could not get
LocalChunkSize
, orRemoteChunkSize
to work. (Bug #674)Results in the entire file read in a single chunk.
However, after reading the code, this works:
This is not in the online documentation, and it really should be!
PS: Everything else is done by passing options, why does
LocalChunkSize
andRemoteChunkSize
even exist?The text was updated successfully, but these errors were encountered: