Closed
Description
We find to a problem at diff between windows text(CRLF) and Mac/Linux(LF) text.
ex)
widnows text file
- abc(CRLF)
- def
mac text file
- abc(LF)
- def
Now, this answer is as follow.
first line is different !
line.js
7 linesAndNewlines = value.split(/(\n|\r\n)/);
-->
this is may must be ....
7 linesAndNewlines = value.split(/(\r\n|\n)/);
thanks for your support!
Metadata
Metadata
Assignees
Labels
No labels