UNPKG

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