re2js 0.4.2 → 0.4.3

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -2,7 +2,7 @@
2
2
  * re2js
3
3
  * RE2JS is the JavaScript port of RE2, a regular expression engine that provides linear time matching
4
4
  *
5
- * @version v0.4.2
5
+ * @version v0.4.3
6
6
  * @author Alexey Vasiliev
7
7
  * @homepage https://github.com/le0pard/re2js#readme
8
8
  * @repository github:le0pard/re2js
@@ -322,7 +322,7 @@ class Unicode {
322
322
  // Minimum and maximum runes involved in folding.
323
323
  // Checked during test.
324
324
  static MIN_FOLD = 0x0041;
325
- static MAX_FOLD = 0x1044f;
325
+ static MAX_FOLD = 0x1e943;
326
326
 
327
327
  // is32 uses binary search to test whether rune is in the specified
328
328
  // slice of 32-bit ranges.