regjsparser
Advanced tools
Comparing version 0.6.2 to 0.6.3
{ | ||
"name": "regjsparser", | ||
"version": "0.6.2", | ||
"version": "0.6.3", | ||
"author": "'Julian Viereck' <julian.viereck@gmail.com>", | ||
@@ -5,0 +5,0 @@ "license": "BSD-2-Clause", |
@@ -236,2 +236,8 @@ // regjsparser | ||
if (hasUnicodeFlag) { | ||
if (_char === '}') { | ||
bail("unescaped or unmatched closing brace"); | ||
} | ||
if (_char === ']') { | ||
bail("unescaped or unmatched closing bracket"); | ||
} | ||
var second; | ||
@@ -238,0 +244,0 @@ if (_char.length === 1 && first >= 0xD800 && first <= 0xDBFF) { |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
49194
1101