node-opcua-data-model
Advanced tools
Comparing version 2.0.0-alpha.19 to 2.0.0-alpha.21
@@ -109,3 +109,3 @@ "use strict"; | ||
function getDiagnosticInfoEncodingByte(diagnosticInfo) { | ||
node_opcua_assert_1.default(diagnosticInfo); | ||
node_opcua_assert_1.assert(diagnosticInfo); | ||
let encodingMask = 0; | ||
@@ -165,3 +165,3 @@ if (diagnosticInfo.symbolicId >= 0) { | ||
if (encodingMask & DiagnosticInfo_EncodingByte.InnerDiagnosticInfo) { | ||
node_opcua_assert_1.default(diagnosticInfo.innerDiagnosticInfo !== null, "missing innerDiagnosticInfo"); | ||
node_opcua_assert_1.assert(diagnosticInfo.innerDiagnosticInfo !== null, "missing innerDiagnosticInfo"); | ||
if (diagnosticInfo.innerDiagnosticInfo) { | ||
@@ -168,0 +168,0 @@ encode_DiagnosticInfo(diagnosticInfo.innerDiagnosticInfo, stream); |
{ | ||
"name": "node-opcua-data-model", | ||
"version": "2.0.0-alpha.19", | ||
"version": "2.0.0-alpha.21", | ||
"description": "pure nodejs OPCUA SDK - module -data-model", | ||
@@ -14,15 +14,15 @@ "scripts": { | ||
"node-opcua-assert": "^2.0.0-alpha.10", | ||
"node-opcua-basic-types": "^2.0.0-alpha.19", | ||
"node-opcua-binary-stream": "^2.0.0-alpha.18", | ||
"node-opcua-enum": "^2.0.0-alpha.18", | ||
"node-opcua-factory": "^2.0.0-alpha.19", | ||
"node-opcua-nodeid": "^2.0.0-alpha.19", | ||
"node-opcua-status-code": "^2.0.0-alpha.19", | ||
"node-opcua-utils": "^2.0.0-alpha.19", | ||
"node-opcua-basic-types": "^2.0.0-alpha.21", | ||
"node-opcua-binary-stream": "^2.0.0-alpha.21", | ||
"node-opcua-enum": "^2.0.0-alpha.21", | ||
"node-opcua-factory": "^2.0.0-alpha.21", | ||
"node-opcua-nodeid": "^2.0.0-alpha.21", | ||
"node-opcua-status-code": "^2.0.0-alpha.21", | ||
"node-opcua-utils": "^2.0.0-alpha.21", | ||
"underscore": "^1.9.1" | ||
}, | ||
"devDependencies": { | ||
"node-opcua-packet-analyzer": "^2.0.0-alpha.19", | ||
"node-opcua-packet-analyzer": "^2.0.0-alpha.21", | ||
"should": "13.2.3", | ||
"source-map-support": "^0.5.11" | ||
"source-map-support": "^0.5.12" | ||
}, | ||
@@ -44,3 +44,3 @@ "author": "Etienne Rossignon", | ||
"homepage": "http://node-opcua.github.io/", | ||
"gitHead": "0343e8c37806056ab5bcfb1c5c083e910c7252cb" | ||
"gitHead": "5cbfb647cd06619685d1968520d0bad368858036" | ||
} |
/** | ||
* @module node-opcua-data-model | ||
*/ | ||
import assert from "node-opcua-assert"; | ||
import { assert } from "node-opcua-assert"; | ||
import { BinaryStream, OutputBinaryStream } from "node-opcua-binary-stream"; | ||
@@ -6,0 +6,0 @@ import { |
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
114928