Socket
Socket
Sign inDemoInstall

fast-xml-parser

Package Overview
Dependencies
Maintainers
1
Versions
136
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

fast-xml-parser - npm Package Compare versions

Comparing version 4.0.4 to 4.0.5

3

CHANGELOG.md
Note: If you find missing information about particular minor version, that version must have been changed without any functional change in this library.
**4.0.5 / 2022-03-06**
* fix #437: call tagValueProcessor from XML builder
**4.0.4 / 2022-03-03**

@@ -4,0 +7,0 @@ * fix #435: should skip unpaired and self-closing nodes when set as stopnodes

2

package.json
{
"name": "fast-xml-parser",
"version": "4.0.4",
"version": "4.0.5",
"description": "Validate XML, Parse XML, Build XML without C/C++ based libraries",

@@ -5,0 +5,0 @@ "main": "./src/fxp.js",

@@ -197,3 +197,4 @@ 'use strict';

function buildTextValNode(val, key, attrStr, level) {
const textValue = this.replaceEntitiesValue(val);
let textValue = this.options.tagValueProcessor(key, val);
textValue = this.replaceEntitiesValue(val);

@@ -200,0 +201,0 @@ if( textValue === '' && this.options.unpairedTags.indexOf(key) !== -1){ //unpaired

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc