This commit is contained in:
cloudhead
2010-02-26 14:47:32 -05:00
parent e30851d384
commit 4c1ce7075b

View File

@@ -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;