fast-xml-parser 3.20.0 → 3.20.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 CHANGED
@@ -21,7 +21,6 @@ To cover expenses, we're planning to launch [FXP Enterprise](https://github.com/
21
21
  <a href="https://opencollective.com/fast-xml-parser/donate" target="_blank">
22
22
  <img src="https://opencollective.com/fast-xml-parser/donate/button@2x.png?color=blue" width=200 />
23
23
  </a>
24
- <a href="https://www.patreon.com/bePatron?u=9531404" data-patreon-widget-type="become-patron-button"><img src="https://c5.patreon.com/external/logo/become_a_patron_button.png" alt="Become a Patron!" width="200" /></a>
25
24
  <a href="https://paypal.me/naturalintelligence"> <img src="static/img/support_paypal.svg" alt="Stubmatic donate button" width="200"/></a>
26
25
 
27
26
  ## Users
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "fast-xml-parser",
3
- "version": "3.20.0",
3
+ "version": "3.20.3",
4
4
  "description": "Validate XML or Parse XML to JS/JSON very fast without C/C++ based libraries",
5
5
  "main": "./src/parser.js",
6
6
  "scripts": {
@@ -91,6 +91,6 @@
91
91
  "url": "https://paypal.me/naturalintelligence"
92
92
  },
93
93
  "dependencies": {
94
- "strnum": "^1.0.3"
94
+ "strnum": "^1.0.4"
95
95
  }
96
96
  }
package/src/parser.d.ts CHANGED
@@ -20,7 +20,7 @@ type X2jOptions = {
20
20
  type strnumOptions = {
21
21
  hex: boolean;
22
22
  leadingZeros: boolean,
23
- skipLike: RegExp
23
+ skipLike?: RegExp
24
24
  }
25
25
  type X2jOptionsOptional = Partial<X2jOptions>;
26
26
  type validationOptions = {