Skip to content

Commit 85fef33

Browse files
committed
Merge pull request #227 from daniellmb/patch-1
'Evidence' is wrong when running under WSH
2 parents a711269 + 1ebfe75 commit 85fef33

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/core/CSSLint.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -125,7 +125,7 @@ var CSSLint = (function(){
125125
parser = new parserlib.css.Parser({ starHack: true, ieFilters: true,
126126
underscoreHack: true, strict: false });
127127

128-
lines = text.split(/\n\r?/g);
128+
lines = text.replace(/\n\r?/g, "$split$").split('$split$');
129129

130130
if (!ruleset){
131131
ruleset = {};

0 commit comments

Comments
 (0)