fast-xml-parser
Advanced tools
Comparing version 4.2.5 to 4.2.6
Note: If you find missing information about particular minor version, that version must have been changed without any functional change in this library. | ||
**4.2.6 / 2023-07-17** | ||
* Remove trailing slash from jPath for self-closing tags (#595) (By [Maciej Radzikowski](https://github.com/m-radzikowski)) | ||
**4.2.5 / 2023-06-22** | ||
@@ -4,0 +7,0 @@ * change code implementation |
{ | ||
"name": "fast-xml-parser", | ||
"version": "4.2.5", | ||
"version": "4.2.6", | ||
"description": "Validate XML, Parse XML, Build XML without C/C++ based libraries", | ||
@@ -42,3 +42,3 @@ "main": "./src/fxp.js", | ||
], | ||
"author": "Amit Gupta (https://amitkumargupta.work/)", | ||
"author": "Amit Gupta (https://amitguptagwl.github.io)", | ||
"license": "MIT", | ||
@@ -45,0 +45,0 @@ "devDependencies": { |
@@ -344,2 +344,3 @@ 'use strict'; | ||
tagName = tagName.substr(0, tagName.length - 1); | ||
jPath = jPath.substr(0, jPath.length - 1); | ||
tagExp = tagName; | ||
@@ -346,0 +347,0 @@ }else{ |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
104563
1973