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
This with autoType: false does not change c values:
autoType: false
aq.fromCSV(`a,b,c\r 00152,2,01/01/2021\r 30219,4,01/01/2021`, { autoType: false, parse: { a: v => v, c: v => v.split('/').reverse().join('-') } })
But this with autoType: true works as expected:
autoType: true
aq.fromCSV(`a,b,c\r 00152,2,01/01/2021\r 30219,4,01/01/2021`, { autoType: true, parse: { a: v => v, c: v => v.split('/').reverse().join('-') } })
I don't see why first block behaves differently
The text was updated successfully, but these errors were encountered:
Thanks for reporting! This is certainly a bug. Will fix shortly.
Sorry, something went wrong.
fix: Fix explicit parser lookup with autoType false. (#184)
930278c
b1b1944
Fix released in 4.7.1.
Thanks a lot!
Successfully merging a pull request may close this issue.
This with
autoType: false
does not change c values:But this with
autoType: true
works as expected:I don't see why first block behaves differently
The text was updated successfully, but these errors were encountered: