New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

handsoap

Package Overview
Dependencies
Maintainers
1
Versions
14
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

handsoap - npm Package Compare versions

Comparing version 0.1.1 to 0.1.2

15

lib/xml.js

@@ -1,2 +0,3 @@

const parseString = require('xml2js').parseString;
const xml2js = require('xml2js');
const parseString = xml2js.parseString;

@@ -28,3 +29,13 @@ exports.stringify = stringify;

return new Promise((resolve, reject) => {
parseString(data, (err, result) => {
const options = {
ignoreAttrs: true,
explicitArray: false,
tagNameProcessors: [
(name) => {
return name.slice(name.indexOf(':') + 1, name.length);
}
]
};
parseString(data, options, (err, result) => {
if (err) {

@@ -31,0 +42,0 @@ reject(err);

2

package.json
{
"name": "handsoap",
"version": "0.1.1",
"version": "0.1.2",
"description": "A (really) simple soap client",

@@ -5,0 +5,0 @@ "main": "./lib/handsoap.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