Comparing version 0.6.3 to 0.6.4
@@ -37,3 +37,3 @@ var sax = require("sax"); | ||
this.namespaces = []; | ||
this._children = []; | ||
this.children = []; | ||
} | ||
@@ -139,4 +139,5 @@ | ||
// #region Children | ||
get children() { | ||
return this._children; | ||
get nodes() { | ||
return this.children.filter(function(c) { return typeof(c) !== 'string'; }); | ||
} | ||
@@ -143,0 +144,0 @@ |
{ | ||
"name": "xmlobject", | ||
"version": "0.6.3", | ||
"version": "0.6.4", | ||
"description": "Convert javascript objects to and from xml strings.", | ||
@@ -5,0 +5,0 @@ "main": "index.js", |
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
11110