Skip to content

Commit c97cbbb

Browse files
committed
Fix carrier return parsing
1 parent f231e9d commit c97cbbb

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lib/scss-tokenize.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ const HASH = '#'.charCodeAt(0)
2727

2828
const RE_AT_END = /[\t\n\f\r "#'()/;[\\\]{}]/g
2929
const RE_WORD_END = /[,\t\n\f\r !"#'():;@[\\\]{}]|\/(?=\*)/g
30-
const RE_BAD_BRACKET = /.[\n"'(/\\]/
30+
const RE_BAD_BRACKET = /.[\r\n"'(/\\]/
3131
const RE_HEX_ESCAPE = /[\da-f]/i
3232

3333
const RE_NEW_LINE = /[\n\f\r]/g // SCSS PATCH

0 commit comments

Comments
 (0)