Skip to content

Commit

Permalink
Merge pull request #3 from BlvckParrot/fix-crlf-input
Browse files Browse the repository at this point in the history
Fix CRLF input
  • Loading branch information
steve-py96 authored Jun 24, 2024
2 parents 3f7c6d3 + bf3b522 commit f0b512e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/input.ts
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ export {
parseValue,
};

const isNewline = (string: string) => string === '\n';
const isNewline = (string: string) => string === '\n' || string === '\r\n';

const isComma = (string: string) => string === ',';

Expand Down

0 comments on commit f0b512e

Please sign in to comment.