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
If the last field in the csv is empty then it will be set as undefined instead of the expected ''
Example file:
id,name,specials 1,John Doe, 2,Jane Doe,Javascript 3,Jake Doe,
Expected output:
{ id: '1', name: 'John Doe', specials: '' } { id: '2', name: 'Jane Doe', specials: 'Javascript' } { id: '3', name: 'Jake Doe', specials: '' }
Received output:
{ id: '1', name: 'John Doe', specials: '' } { id: '2', name: 'Jane Doe', specials: 'Javascript' } { id: '3', name: 'Jake Doe', specials: undefined }
The text was updated successfully, but these errors were encountered:
No branches or pull requests
If the last field in the csv is empty then it will be set as undefined instead of the expected ''
Example file:
Expected output:
Received output:
The text was updated successfully, but these errors were encountered: