fast-xml-parser
Advanced tools
Comparing version
@@ -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. |
{ | ||
"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 | ||
[](https://github.com/Tatsh) | ||
[](https://github.com/alfonsomunozpomer) | ||
[](https://github.com/monkeywithacupcake) | ||
[](https://github.com/EyesOnlyNet) | ||
[](https://github.com/abbyarmada) | ||
[](https://github.com/j0k3r) | ||
[](https://github.com/HaroldPutman) | ||
[](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
24
4.35%1209
1.6%220902
-12.83%245
-3.54%Updated