UNPKG

267 BJavaScriptView Raw
1var foo = "bar";
2
3// some comment
4function dolor(){
5 amet();
6}
7
8// no changes until line 19
9var a = function() {
10 return 'b';
11};
12
13// some other comment
14
15thisWontShowOnDiff();
16thisShouldBeFirstLineOfLine19Diff();
17// yeap this will show too
18
19dolor(a);
20amet();
21// EOF