fast-xml-parser 4.0.13 → 4.0.14
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/CHANGELOG.md +3 -0
- package/package.json +1 -1
- package/src/fxp.d.ts +2 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,8 @@
|
|
|
1
1
|
Note: If you find missing information about particular minor version, that version must have been changed without any functional change in this library.
|
|
2
2
|
|
|
3
|
+
**4.0.14 / 2023-01-22**
|
|
4
|
+
* fixed: add missed typing "eNotation" to parse values
|
|
5
|
+
|
|
3
6
|
**4.0.13 / 2023-01-07**
|
|
4
7
|
* preserveorder formatting (By [mdeknowis](https://github.com/mdeknowis))
|
|
5
8
|
* support `transformAttributeName` (By [Erik Rothoff Andersson](https://github.com/erkie))
|
package/package.json
CHANGED
package/src/fxp.d.ts
CHANGED
|
@@ -36,7 +36,8 @@ Control how tag value should be parsed. Called only if tag value is not empty
|
|
|
36
36
|
type strnumOptions = {
|
|
37
37
|
hex: boolean;
|
|
38
38
|
leadingZeros: boolean,
|
|
39
|
-
skipLike?: RegExp
|
|
39
|
+
skipLike?: RegExp,
|
|
40
|
+
eNotation: boolean
|
|
40
41
|
}
|
|
41
42
|
type X2jOptionsOptional = Partial<X2jOptions>;
|
|
42
43
|
type validationOptions = {
|