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

node-opcua-xml2json

Package Overview
Dependencies
Maintainers
1
Versions
157
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

node-opcua-xml2json - npm Package Compare versions

Comparing version 0.4.0 to 0.4.2

6

package.json
{
"name": "node-opcua-xml2json",
"version": "0.4.0",
"version": "0.4.2",
"description": "pure nodejs OPCUA SDK - module -xml2json",

@@ -13,3 +13,3 @@ "main": "src/xml2json.js",

"node-opcua-assert": "^0.4.0",
"underscore": "^1.9.0"
"underscore": "^1.9.1"
},

@@ -19,3 +19,3 @@ "author": "Etienne Rossignon",

"devDependencies": {
"node-opcua-nodesets": "^0.3.0",
"node-opcua-nodesets": "^0.4.2",
"should": "13.2.1"

@@ -22,0 +22,0 @@ },

@@ -27,5 +27,8 @@ /* global ReaderState */

if (parser.hasOwnProperty(name)) {
if (!(parser[name] instanceof ReaderState)) {
parser[name] = new ReaderState(parser[name]);
}
if (parser[name] && !(parser[name] instanceof ReaderState)) {
// this is to prevent recursion
const tmp = parser[name];
parser[name] = null;
parser[name] = new ReaderState(tmp); }
}

@@ -307,1 +310,2 @@ }

exports.Xml2Json = Xml2Json;
exports.ReaderState = ReaderState;
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