coffee-lex
Advanced tools
Comparing version 7.0.4 to 7.0.5
@@ -40,6 +40,6 @@ "use strict"; | ||
// newlines, so that two or more newlines with only spaces between them | ||
// will result in a single line separator. Escaped whitespace characters | ||
// will result in a single line separator. Escaped newline characters | ||
// are also allowed and should be skipped. | ||
while ((pos < content.length && ' \t\n'.includes(content[pos])) || | ||
(pos < content.length && content[pos] === '\\' && ' \t\n'.includes(content[pos + 1]))) { | ||
(content.slice(pos, pos + 2) === '\\\n')) { | ||
pos++; | ||
@@ -46,0 +46,0 @@ } |
@@ -48,3 +48,3 @@ { | ||
}, | ||
"version": "7.0.4" | ||
"version": "7.0.5" | ||
} |
Sorry, the diff of this file is not supported yet
157523