regjsparser
Advanced tools
Comparing version 0.6.1 to 0.6.2
{ | ||
"name": "regjsparser", | ||
"version": "0.6.1", | ||
"version": "0.6.2", | ||
"author": "'Julian Viereck' <julian.viereck@gmail.com>", | ||
@@ -5,0 +5,0 @@ "license": "BSD-2-Clause", |
@@ -709,2 +709,3 @@ // regjsparser | ||
if (insideCharacterClass) { | ||
// b | ||
if (match('b')) { | ||
@@ -722,2 +723,6 @@ // 15.10.2.19 | ||
} | ||
// [+U] - | ||
if (match('-') && hasUnicodeFlag) { | ||
return createEscaped('singleEscape', 0x002d, '\\-'); | ||
} | ||
} | ||
@@ -724,0 +729,0 @@ |
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
49002
1095