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

node-opcua-basic-types

Package Overview
Dependencies
Maintainers
1
Versions
170
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 0.1.0-4 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 @@

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