mirror of
https://github.com/less/less.js.git
synced 2026-01-23 22:27:57 -05:00
eat tabs
This commit is contained in:
@@ -109,7 +109,7 @@ function $(tok, root) {
|
||||
|
||||
while (i <= endIndex) {
|
||||
c = input.charCodeAt(i);
|
||||
if (! (c === 32 || c === 10)) { break }
|
||||
if (! (c === 32 || c === 10 || c === 9)) { break }
|
||||
i++;
|
||||
}
|
||||
return match.length === 1 ? match[0] : match;
|
||||
|
||||
Reference in New Issue
Block a user