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

easysoap

Package Overview
Dependencies
Maintainers
1
Versions
42
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

easysoap - npm Package Compare versions

Comparing version 0.6.11 to 0.6.12

15

lib/wsdl.js

@@ -146,2 +146,3 @@ (function() {

var tmp = null;
if (child.children !== void 0 &&

@@ -160,3 +161,13 @@ child.children.length !== 0) {

{
if (!_.isArray(data[getName(child.name)])) data[getName(child.name)] = [];
if (!_.isArray(data[getName(child.name)])) {
if (_.isObject(data[getName(child.name)])) {
tmp = data[getName(child.name)];
data[getName(child.name)] = [];
data[getName(child.name)].push(tmp);
} else {
data[getName(child.name)] = [];
}
}
if (childToExtract.attr !== void 0 &&

@@ -183,3 +194,3 @@ !_.isEmpty(childToExtract.attr)) {

if (!_.isArray(data[getName(child.name)])) {
var tmp = data[getName(child.name)];
tmp = data[getName(child.name)];
data[getName(child.name)] = [];

@@ -186,0 +197,0 @@ data[getName(child.name)].push(tmp);

2

package.json

@@ -8,3 +8,3 @@ {

},
"version": "0.6.11",
"version": "0.6.12",
"main": "./index",

@@ -11,0 +11,0 @@ "dependencies": {

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