node-opcua-basic-types
Advanced tools
Comparing version 2.0.0 to 2.1.0
@@ -261,2 +261,6 @@ "use strict"; | ||
} | ||
if (value.length === 2 && (typeof value[0] === "number") && (typeof value[1] === "number")) { | ||
// Int64 as a [high,low] | ||
return value[1] + value[0] * 0xFFFFFFFF; | ||
} | ||
return parseInt(value, 10); | ||
@@ -263,0 +267,0 @@ } |
{ | ||
"name": "node-opcua-basic-types", | ||
"version": "2.0.0", | ||
"version": "2.1.0", | ||
"description": "pure nodejs OPCUA SDK - module -basic-types", | ||
@@ -15,16 +15,16 @@ "main": "./dist/index.js", | ||
"node-opcua-assert": "^2.0.0", | ||
"node-opcua-binary-stream": "^2.0.0", | ||
"node-opcua-buffer-utils": "^2.0.0", | ||
"node-opcua-date-time": "^2.0.0", | ||
"node-opcua-enum": "^2.0.0", | ||
"node-opcua-guid": "^2.0.0", | ||
"node-opcua-nodeid": "^2.0.0", | ||
"node-opcua-status-code": "^2.0.0", | ||
"node-opcua-utils": "^2.0.0", | ||
"node-opcua-binary-stream": "^2.1.0", | ||
"node-opcua-buffer-utils": "^2.1.0", | ||
"node-opcua-date-time": "^2.1.0", | ||
"node-opcua-enum": "^2.1.0", | ||
"node-opcua-guid": "^2.1.0", | ||
"node-opcua-nodeid": "^2.1.0", | ||
"node-opcua-status-code": "^2.1.0", | ||
"node-opcua-utils": "^2.1.0", | ||
"underscore": "^1.9.1" | ||
}, | ||
"devDependencies": { | ||
"@types/node": "^12.0.2", | ||
"@types/underscore": "^1.8.18", | ||
"node-opcua-debug": "^2.0.0", | ||
"@types/node": "^12.6.2", | ||
"@types/underscore": "^1.9.2", | ||
"node-opcua-debug": "^2.1.0", | ||
"should": "13.2.3" | ||
@@ -47,3 +47,3 @@ }, | ||
"homepage": "http://node-opcua.github.io/", | ||
"gitHead": "deed061b032e8490d44f59fc42559d413968ab89" | ||
"gitHead": "ddce2b6e3e13371510e63d839c1a4c4ff0be2c15" | ||
} |
@@ -278,3 +278,7 @@ /*** | ||
} | ||
if (value.length === 2 && (typeof value[0] === "number") && (typeof value[1] === "number")) { | ||
// Int64 as a [high,low] | ||
return value[1] + value[0] * 0xFFFFFFFF; | ||
} | ||
return parseInt(value, 10); | ||
} |
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
92513
1843
Updatednode-opcua-date-time@^2.1.0
Updatednode-opcua-enum@^2.1.0
Updatednode-opcua-guid@^2.1.0
Updatednode-opcua-nodeid@^2.1.0
Updatednode-opcua-utils@^2.1.0