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 3.17.5 to 3.17.6

11

package.json
{
"name": "fast-xml-parser",
"version": "3.17.5",
"version": "3.17.6",
"description": "Validate XML or Parse XML to JS/JSON very fast without C/C++ based libraries",

@@ -14,3 +14,2 @@ "main": "./src/parser.js",

"coverage:check": "istanbul check-coverage --branch 90 --statement 90",
"postinstall": "node tasks/postinstall.js || exit 0",
"prettier": "prettier --write src/**/*.js",

@@ -74,6 +73,6 @@ "publish-please": "publish-please",

"devDependencies": {
"@babel/core": "^7.12.9",
"@babel/plugin-transform-runtime": "^7.12.1",
"@babel/preset-env": "^7.12.7",
"@babel/register": "^7.12.1",
"@babel/core": "^7.12.10",
"@babel/plugin-transform-runtime": "^7.12.10",
"@babel/preset-env": "^7.12.11",
"@babel/register": "^7.12.10",
"babel-loader": "^8.2.2",

@@ -80,0 +79,0 @@ "eslint": "^5.16.0",

@@ -32,4 +32,5 @@ 'use strict';

for (var tag in node.child[tagname]) {
jObj[tagname].push(convertToJson(node.child[tagname][tag], options));
}
if (node.child[tagname].hasOwnProperty(tag)){
jObj[tagname].push(convertToJson(node.child[tagname][tag], options));}
}
} else {

@@ -36,0 +37,0 @@ if(options.arrayMode === true){

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