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

Wrong result of JsDiff.diffLines when there is an empty line before a change #51

Closed
felicienfrancois opened this issue Mar 13, 2015 · 1 comment

Comments

@felicienfrancois
Copy link
Contributor

var oldStr = "Line1\n" + "\n" + "Line2\n";
var newStr = "Line1\n" + "\n" + "ChangedLine\n";
JsDiff.diffLines(oldStr, newStr);

outputs

[
  {
    "count": 1, // Should be 2
    "value": "Line1\r\n" // Should be "Line1\n\n"
  },
  {
    "count": 1,
    "added": true,
    "value": "ChangedLine\n"
  },
  {
    "count": 1,
    "removed": true,
    "value": "Line2\n"
  }
]

In fact it seems successive \n are replaced by \r and ignored in counts

kpdecker added a commit that referenced this issue Mar 13, 2015
Fix for #51 Wrong result of JsDiff.diffLines
@kpdecker
Copy link
Owner

Closing in favor of #52

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

No branches or pull requests

2 participants