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.
- package/README.md +14 -0
- package/build/index.cjs.cjs +2 -2
- package/build/index.cjs.cjs.map +1 -1
- package/build/index.esm.js +2 -2
- package/build/index.esm.js.map +1 -1
- package/build/index.umd.js +2 -2
- package/build/index.umd.js.map +1 -1
- package/package.json +11 -11
package/build/index.umd.js
CHANGED
|
@@ -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.
|
|
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
|
|
@@ -328,7 +328,7 @@
|
|
|
328
328
|
// Minimum and maximum runes involved in folding.
|
|
329
329
|
// Checked during test.
|
|
330
330
|
static MIN_FOLD = 0x0041;
|
|
331
|
-
static MAX_FOLD =
|
|
331
|
+
static MAX_FOLD = 0x1e943;
|
|
332
332
|
|
|
333
333
|
// is32 uses binary search to test whether rune is in the specified
|
|
334
334
|
// slice of 32-bit ranges.
|