Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

xmlobject

Package Overview
Dependencies
Maintainers
1
Versions
7
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

xmlobject - npm Package Compare versions

Comparing version 0.6.2 to 0.6.3

9

index.js

@@ -37,3 +37,3 @@ var sax = require("sax");

this.namespaces = [];
this.children = [];
this._children = [];
}

@@ -139,2 +139,5 @@

// #region Children
get children() {
return this._children;
}

@@ -150,4 +153,3 @@ createChild(ns,name) {

var child = new Node(name, this);
this.addChild(child);
return child;
return this.addChild(child);
}

@@ -157,2 +159,3 @@

this.children.push(c);
return c;
}

@@ -159,0 +162,0 @@

{
"name": "xmlobject",
"version": "0.6.2",
"version": "0.6.3",
"description": "Convert javascript objects to and from xml strings.",

@@ -5,0 +5,0 @@ "main": "index.js",

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