You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Is your feature request related to a problem? Please describe.
A clear and concise description of what the problem is. Ex. I'm always frustrated when [...]
When parsing using headers numbers are always quoted and there is no option to preserve numerics. So a line in a csv file such as 109,The quick brown fox jumps over the lazy dog,ABC with a header of id,text,chars would be parsed as {id: "109", text: "The quick brown fox jumps over the lazy dog", chars: "ABC} but what I really want is {id: 109, text: "The quick brown fox jumps over the lazy dog", chars: "ABC"}.
Describe the solution you'd like
A clear and concise description of what you want to happen.
Provide an option to preserve numerics that would test for isNAN and if that returns false would then convert the text to either an integer or a float.
Describe alternatives you've considered
A clear and concise description of any alternative solutions or features you've considered.
Additional context
Add any other context or screenshots about the feature request here.
The text was updated successfully, but these errors were encountered:
Parsing or Formatting?
Is your feature request related to a problem? Please describe.
A clear and concise description of what the problem is. Ex. I'm always frustrated when [...]
When parsing using headers numbers are always quoted and there is no option to preserve numerics. So a line in a csv file such as 109,The quick brown fox jumps over the lazy dog,ABC with a header of id,text,chars would be parsed as
{id: "109", text: "The quick brown fox jumps over the lazy dog", chars: "ABC}
but what I really want is{id: 109, text: "The quick brown fox jumps over the lazy dog", chars: "ABC"}
.Describe the solution you'd like
A clear and concise description of what you want to happen.
Provide an option to preserve numerics that would test for isNAN and if that returns false would then convert the text to either an integer or a float.
Describe alternatives you've considered
A clear and concise description of any alternative solutions or features you've considered.
Additional context
Add any other context or screenshots about the feature request here.
The text was updated successfully, but these errors were encountered: