You're Invited:Meet the Socket Team at BlackHat and DEF CON in Las Vegas, Aug 4-6.RSVP
Socket
Book a DemoInstallSign in
Socket

node-opcua-basic-types

Package Overview
Dependencies
Maintainers
1
Versions
174
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

node-opcua-basic-types - npm Package Compare versions

Comparing version

to
0.1.0-5

4

package.json
{
"name": "node-opcua-basic-types",
"version": "0.1.0-4",
"version": "0.1.0-5",
"description": "pure nodejs OPCUA SDK - module -basic-types",

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

"node-opcua-guid": "^0.1.0-4",
"node-opcua-nodeid": "^0.1.0-4",
"node-opcua-nodeid": "^0.1.0-5",
"node-opcua-status-code": "^0.1.0-4",

@@ -17,0 +17,0 @@ "node-opcua-utils": "^0.1.0-4",

@@ -670,3 +670,16 @@ "use strict";

});
describe("Int64", function () {
it("should coerce an Int32 into Int64", function () {
ec.coerceInt64(0xFF1000).should.eql([0x0, 0xFF1000]);
});
it("should coerce an long number into Int64", function () {
ec.coerceInt64(0x1020000000).should.eql([0x10, 0x20000000]);
});
it("should coerce an long number into Int64", function () {
ec.coerceInt64(0x100020000000).should.eql([0x1000, 0x20000000]);
});
});
describe("DateTime",function() {

@@ -673,0 +686,0 @@