Skip to content
New issue

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

csv to json converter #24

Open
wants to merge 2 commits into
base: master
Choose a base branch
from

Conversation

CameronSima
Copy link
Member

No description provided.

// Replace newlines to enforce the same style for newline
// characters across operating systems.
var lines = file.replace(/(\r\n|\r|\n)/g, '\n')
.split(/\r?\n/g);
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Is this redundant?
Could you do it this way?

var lines = file.split(/(\r\n|\r|\n)/g)

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants