Socket
Socket
Sign inDemoInstall

soap

Package Overview
Dependencies
Maintainers
1
Versions
95
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

soap - npm Package Compare versions

Comparing version 0.1.2 to 0.1.3

test/logincms.wsdl

3

lib/client.js

@@ -121,7 +121,8 @@ /*

var obj = self.wsdl.xmlToObject(body);
callback(null, obj[output.$name], body);
}
catch (error) {
callback(error, null, body);
return;
}
callback(null, obj[output.$name], body);
}

@@ -128,0 +129,0 @@ }, headers, options);

@@ -203,2 +203,11 @@ /*

function extend(base, obj) {
for (var key in obj) {
if (obj.hasOwnProperty(key)) {
base[key] = obj[key];
}
}
return base;
}
var TypesElement = function() {

@@ -216,5 +225,5 @@ Element.apply(this, arguments);

assert(child instanceof SchemaElement);
this.complexTypes = child.complexTypes;
this.types = child.types;
this.includes = child.includes;
extend(this.complexTypes, child.complexTypes);
extend(this.types, child.types);
extend(this.includes, child.includes);
}

@@ -221,0 +230,0 @@

{
"name": "soap",
"version": "0.1.2",
"version": "0.1.3",
"description": "A minimal node SOAP client",

@@ -5,0 +5,0 @@ "engines": { "node": ">=0.4.0" },

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