clarity-pattern-parser 9.1.0 → 9.2.0
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/dist/index.browser.js +6 -0
- package/dist/index.browser.js.map +1 -1
- package/dist/index.esm.js +6 -0
- package/dist/index.esm.js.map +1 -1
- package/dist/index.js +6 -0
- package/dist/index.js.map +1 -1
- package/dist/patterns/Repeat.d.ts +2 -0
- package/package.json +1 -1
- package/src/patterns/Repeat.ts +8 -0
package/dist/index.esm.js
CHANGED
|
@@ -1480,6 +1480,12 @@ class Repeat {
|
|
|
1480
1480
|
get children() {
|
|
1481
1481
|
return this._children;
|
|
1482
1482
|
}
|
|
1483
|
+
get min() {
|
|
1484
|
+
return this.children[0].min;
|
|
1485
|
+
}
|
|
1486
|
+
get max() {
|
|
1487
|
+
return this.children[0].max || Infinity;
|
|
1488
|
+
}
|
|
1483
1489
|
constructor(name, pattern, options = {}) {
|
|
1484
1490
|
this._id = `repeat-${idIndex$3++}`;
|
|
1485
1491
|
this._pattern = pattern;
|