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

node-opcua-client-dynamic-extension-object

Package Overview
Dependencies
Maintainers
1
Versions
201
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

node-opcua-client-dynamic-extension-object - npm Package Compare versions

Comparing version 2.78.0 to 2.79.0

4

dist/private/populate_data_type_manager_103.js

@@ -413,3 +413,3 @@ "use strict";

}
const regexTargetNamespaceAttribute = /TargetNamespace="([^"]+)"|TargetNamespace='([^"]+)'/;
const regexTargetNamespaceAttribute = /TargetNamespace="([^"]+)"|TargetNamespace='([^']+)'/;
function extractTargetNamespaceAttribute(xmlElement) {

@@ -428,3 +428,3 @@ // warning TargetNamespace could have ' or " , Wago PLC for instance uses simple quotes

const xmlns = c[1];
const namespace = c[3] || c[4];
const namespace = c[4] || c[5];
return { xmlns, namespace };

@@ -431,0 +431,0 @@ }

{
"name": "node-opcua-client-dynamic-extension-object",
"version": "2.78.0",
"version": "2.79.0",
"description": "pure nodejs OPCUA SDK - module client-dynamic-extension-object",

@@ -16,15 +16,15 @@ "main": "./dist/index.js",

"node-opcua-binary-stream": "2.77.0",
"node-opcua-data-model": "2.78.0",
"node-opcua-data-value": "2.78.0",
"node-opcua-data-model": "2.79.0",
"node-opcua-data-value": "2.79.0",
"node-opcua-debug": "2.77.0",
"node-opcua-extension-object": "2.78.0",
"node-opcua-factory": "2.78.0",
"node-opcua-nodeid": "2.77.0",
"node-opcua-pseudo-session": "2.78.0",
"node-opcua-schemas": "2.78.0",
"node-opcua-service-browse": "2.78.0",
"node-opcua-service-translate-browse-path": "2.78.0",
"node-opcua-extension-object": "2.79.0",
"node-opcua-factory": "2.79.0",
"node-opcua-nodeid": "2.79.0",
"node-opcua-pseudo-session": "2.79.0",
"node-opcua-schemas": "2.79.0",
"node-opcua-service-browse": "2.79.0",
"node-opcua-service-translate-browse-path": "2.79.0",
"node-opcua-status-code": "2.77.0",
"node-opcua-types": "2.78.0",
"node-opcua-variant": "2.78.0"
"node-opcua-types": "2.79.0",
"node-opcua-variant": "2.79.0"
},

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

"homepage": "http://node-opcua.github.io/",
"gitHead": "31c6eee3c51f52427584364fff2fdb07bbac65be"
"gitHead": "1a6d41827954dccf2c2cdff9344cc11fc99767f3"
}

@@ -500,3 +500,3 @@ /* eslint-disable max-statements */

const regexTargetNamespaceAttribute = /TargetNamespace="([^"]+)"|TargetNamespace='([^"]+)'/;
const regexTargetNamespaceAttribute = /TargetNamespace="([^"]+)"|TargetNamespace='([^']+)'/;
function extractTargetNamespaceAttribute(xmlElement: string): string {

@@ -515,3 +515,3 @@ // warning TargetNamespace could have ' or " , Wago PLC for instance uses simple quotes

const xmlns = c[1] as string;
const namespace: string = c[3] || c[4];
const namespace: string = c[4] || c[5];
return { xmlns, namespace };

@@ -518,0 +518,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