We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2fb01dc commit 5503d46Copy full SHA for 5503d46
1 file changed
parse-css.js
@@ -20,7 +20,7 @@ function nonascii(code) { return code >= 0x80; }
20
function namestartchar(code) { return letter(code) || nonascii(code) || code == 0x5f; }
21
function namechar(code) { return namestartchar(code) || digit(code) || code == 0x2d; }
22
function nonprintable(code) { return between(code, 0,8) || code == 0xb || between(code, 0xe,0x1f) || code == 0x7f; }
23
-function newline(code) { return code == 0xa || code == 0xc; }
+function newline(code) { return code == 0xa; }
24
function whitespace(code) { return newline(code) || code == 9 || code == 0x20; }
25
function badescape(code) { return newline(code) || isNaN(code); }
26
0 commit comments