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

node-opcua-factory

Package Overview
Dependencies
Maintainers
1
Versions
183
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

node-opcua-factory - npm Package Compare versions

Comparing version 2.0.0-alpha.24 to 2.0.0-alpha.26

5

dist/factories_schema_helpers.js

@@ -137,3 +137,6 @@ "use strict";

valueArray = valueArray || [];
const defaultValue = _t.computer_default_value(field.defaultValue);
let defaultValue = undefined;
if (_t.computer_default_value) {
defaultValue = _t.computer_default_value(field.defaultValue);
}
const arr = [];

@@ -140,0 +143,0 @@ for (i = 0; i < valueArray.length; i++) {

10

package.json
{
"name": "node-opcua-factory",
"version": "2.0.0-alpha.24",
"version": "2.0.0-alpha.26",
"description": "pure nodejs OPCUA SDK - module -factory",

@@ -14,3 +14,3 @@ "main": "./dist/index.js",

"node-opcua-assert": "^2.0.0-alpha.24",
"node-opcua-basic-types": "^2.0.0-alpha.24",
"node-opcua-basic-types": "^2.0.0-alpha.26",
"node-opcua-binary-stream": "^2.0.0-alpha.24",

@@ -21,7 +21,7 @@ "node-opcua-enum": "^2.0.0-alpha.24",

"node-opcua-status-code": "^2.0.0-alpha.24",
"node-opcua-utils": "^2.0.0-alpha.24",
"node-opcua-utils": "^2.0.0-alpha.26",
"underscore": "^1.9.1"
},
"devDependencies": {
"node-opcua-debug": "^2.0.0-alpha.24"
"node-opcua-debug": "^2.0.0-alpha.26"
},

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

"homepage": "http://node-opcua.github.io/",
"gitHead": "5b131e21469dea811490a81907d8aa571dacb65f"
"gitHead": "56340dc976fb8e9954ffe9f1aa3ebd06a47f24de"
}

@@ -146,4 +146,8 @@ /**

valueArray = valueArray || [];
const defaultValue = _t.computer_default_value(field.defaultValue);
let defaultValue: any = undefined;
if (_t.computer_default_value) {
defaultValue = _t.computer_default_value(field.defaultValue);
}
const arr = [];

@@ -150,0 +154,0 @@ for (i = 0; i < valueArray.length; i++) {

Sorry, the diff of this file is not supported yet

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