New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

fast-xml-parser

Package Overview
Dependencies
Maintainers
1
Versions
151
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

to
3.9.11

codecept.json

5

CONTRIBUTING.md

@@ -32,1 +32,6 @@ ## Thanks

Note that publishing changes or accepting any PR may take time. So please keep patience.
### Guidelines for first time contributors
* https://github.com/Roshanjossey/first-contributions
* **Don't stretch**. If you complete an issue in long time, there is a possibility that other developers finish their part and you face code conflicts which may increase code complexity for you. So it is always good to complete an issue ASAP.

8

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

@@ -68,3 +68,5 @@ "main": "./src/parser.js",

"benchmark": "^2.1.4",
"browserify": "^16.1.1",
"eslint": "^4.18.1",
"he": "~1.1.1",
"http-server": "^0.11.1",

@@ -75,10 +77,8 @@ "istanbul": "^0.4.5",

"xml2js": "^0.4.19",
"browserify": "^16.1.1",
"he": "~1.1.1",
"zombie": "^5.0.8"
},
"dependencies": {
"nimnjs": "^1.2.2"
"nimnjs": "^1.3.2"
},
"typings": "src/parser.d.ts"
}

@@ -219,14 +219,5 @@ # [fast-xml-parser](https://www.npmjs.com/package/fast-xml-parser)

### Collaborators
[![Andrew Udvare](https://avatars1.githubusercontent.com/u/724848?s=60&v=4)](https://github.com/Tatsh)
[![Alfonso Muñoz-Pomer Fuentes](https://avatars2.githubusercontent.com/u/4425744?s=60&v=4)](https://github.com/alfonsomunozpomer)
[![jess](https://avatars2.githubusercontent.com/u/7316730?s=60&v=4)](https://github.com/monkeywithacupcake)
[![Steve Reichenbach](https://avatars0.githubusercontent.com/u/5768289?s=60&v=4)](https://github.com/EyesOnlyNet)
[![Abby Armada](https://avatars3.githubusercontent.com/u/4226336?s=60&v=4)](https://github.com/abbyarmada)
[![Jérémy Benoist](https://avatars1.githubusercontent.com/u/62333?s=60&v=4)](https://github.com/j0k3r)
[![Harold Putman](https://avatars1.githubusercontent.com/u/4070255?s=60&v=4)](https://github.com/HaroldPutman)
[![Benjamin Bock](https://avatars0.githubusercontent.com/u/4932?s=60&v=4)](https://github.com/bb)
### All Contributors
<a href="graphs/contributors"><img src="https://opencollective.com/fast-xml-parser/contributors.svg?width=890&button=false" /></a>
## Backers

@@ -233,0 +224,0 @@

@@ -85,4 +85,5 @@ "use strict";

// supress undefined node
}
else if (typeof jObj[key] !== "object") {//premitive type
}else if (jObj[key] === null) {
val += this.indentate(level) + "<" + key + "/" + this.tagEndChar;
}else if (typeof jObj[key] !== "object") {//premitive type
const attr = this.isAttribute(key);

@@ -121,4 +122,5 @@ if (attr) {

// supress undefined node
}
else if (typeof item === "object") {
}else if(item === null){
val += this.indentate(level) + "<" + key + "/" + this.tagEndChar;
}else if (typeof item === "object") {
const result = this.j2x(item, level + 1);

@@ -131,3 +133,3 @@ val += this.buildObjNode(result.val, key, result.attrStr, level);

}
} else {
} else {//nested node
if (this.options.attrNodeName && key === this.options.attrNodeName) {

@@ -134,0 +136,0 @@ const Ks = Object.keys(jObj[key]);

@@ -7,12 +7,15 @@ "use strict";

const chars = {
nilChar: char(254),
missingChar: char(200),
nilPremitive: char(176),
missingPremitive: char(201),
emptyChar: char(177),
emptyValue: char(178),
boundryChar: char(186),
arrayEnd: char(197),
nilChar : char(176),
missingChar : char(201),
nilPremitive : char(175),
missingPremitive : char(200),
emptyChar : char(178),
emptyValue: char(177),//empty Premitive
boundryChar : char(179),
objStart: char(198),
arrStart: char(199)
arrStart: char(204),
arrayEnd: char(185),
};

@@ -27,2 +30,3 @@

chars.emptyChar,
chars.emptyValue,
chars.arrayEnd,

@@ -29,0 +33,0 @@ chars.objStart,

Sorry, the diff of this file is not supported yet