aboutsummaryrefslogtreecommitdiffstats
path: root/src/Parser.js
diff options
context:
space:
mode:
Diffstat (limited to 'src/Parser.js')
-rw-r--r--src/Parser.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/Parser.js b/src/Parser.js
index 7ad65f32..8dc8f9c2 100644
--- a/src/Parser.js
+++ b/src/Parser.js
@@ -93,7 +93,7 @@ function lex(text, parseStringsForObjects){
}
function isWhitespace(ch) {
return ch == ' ' || ch == '\r' || ch == '\t' ||
- ch == '\n' || ch == '\v';
+ ch == '\n' || ch == '\v' || ch == '\u00A0'; // IE treats non-breaking space as \u00A0
}
function isIdent(ch) {
return 'a' <= ch && ch <= 'z' ||