New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

node-opcua-status-code

Package Overview
Dependencies
Maintainers
1
Versions
122
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

node-opcua-status-code - npm Package Compare versions

Comparing version 0.2.2 to 0.2.3

4

package.json
{
"name": "node-opcua-status-code",
"version": "0.2.2",
"version": "0.2.3",
"description": "pure nodejs OPCUA SDK - module -status-code",

@@ -15,3 +15,3 @@ "main": "./src/opcua_status_code.js",

"devDependencies": {
"node-opcua-binary-stream": "^0.2.2",
"node-opcua-binary-stream": "^0.2.3",
"should": "13.2.1"

@@ -18,0 +18,0 @@ },

@@ -172,2 +172,10 @@ "use strict";

StatusCode.prototype.isNot = function isNot(other) {
assert(other instanceof StatusCode);
return this.value !== other.value;
};
StatusCode.prototype.equals = function equals(other) {
assert(other instanceof StatusCode);
return this.value === other.value;
};

@@ -174,0 +182,0 @@ var encodeStatusCode = function (statusCode, stream) {

@@ -0,0 +0,0 @@

Sorry, the diff of this file is not supported yet

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