node-opcua-factory
Advanced tools
Comparing version 2.0.0-alpha.24 to 2.0.0-alpha.26
@@ -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++) { |
{ | ||
"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
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
177564
3471