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

node-opcua-generator

Package Overview
Dependencies
Maintainers
1
Versions
216
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

node-opcua-generator - npm Package Compare versions

Comparing version 2.66.0 to 2.67.0

4

dist/utils/normalize_require_file.js

@@ -18,7 +18,7 @@ "use strict";

// append ./ if necessary
if (localFile.substr(0, 1) !== ".") {
if (localFile.substring(0, 1) !== ".") {
localFile = "./" + localFile;
}
// remove extension
localFile = localFile.substr(0, localFile.length - path.extname(localFile).length);
localFile = localFile.substring(0, localFile.length - path.extname(localFile).length);
return localFile;

@@ -25,0 +25,0 @@ }

{
"name": "node-opcua-generator",
"version": "2.66.0",
"version": "2.67.0",
"description": "pure nodejs OPCUA SDK - module -generator",

@@ -17,24 +17,24 @@ "main": "./dist/index.js",

"node-opcua-assert": "2.66.0",
"node-opcua-basic-types": "2.66.0",
"node-opcua-buffer-utils": "2.66.0",
"node-opcua-constants": "2.66.0",
"node-opcua-data-model": "2.66.0",
"node-opcua-data-value": "2.66.0",
"node-opcua-date-time": "2.66.0",
"node-opcua-debug": "2.66.0",
"node-opcua-enum": "2.66.0",
"node-opcua-factory": "2.66.0",
"node-opcua-basic-types": "2.67.0",
"node-opcua-buffer-utils": "2.67.0",
"node-opcua-constants": "2.67.0",
"node-opcua-data-model": "2.67.0",
"node-opcua-data-value": "2.67.0",
"node-opcua-date-time": "2.67.0",
"node-opcua-debug": "2.67.0",
"node-opcua-enum": "2.67.0",
"node-opcua-factory": "2.67.0",
"node-opcua-guid": "2.66.0",
"node-opcua-nodeid": "2.66.0",
"node-opcua-numeric-range": "2.66.0",
"node-opcua-schemas": "2.66.0",
"node-opcua-status-code": "2.66.0",
"node-opcua-utils": "2.66.0",
"node-opcua-variant": "2.66.0",
"node-opcua-xml2json": "2.66.0"
"node-opcua-nodeid": "2.67.0",
"node-opcua-numeric-range": "2.67.0",
"node-opcua-schemas": "2.67.0",
"node-opcua-status-code": "2.67.0",
"node-opcua-utils": "2.67.0",
"node-opcua-variant": "2.67.0",
"node-opcua-xml2json": "2.67.0"
},
"devDependencies": {
"node-opcua-binary-stream": "2.66.0",
"node-opcua-extension-object": "2.66.0",
"node-opcua-packet-analyzer": "2.66.0",
"node-opcua-binary-stream": "2.67.0",
"node-opcua-extension-object": "2.67.0",
"node-opcua-packet-analyzer": "2.67.0",
"prettier": "^2.6.1",

@@ -60,3 +60,3 @@ "should": "^13.2.3",

"homepage": "http://node-opcua.github.io/",
"gitHead": "97f47e2e242a1fd737495fd64cb65e8fb7a9964b"
"gitHead": "74c2fd7d4ce3eb48d25a911258bf90a64218ea0e"
}

@@ -15,8 +15,8 @@ import * as path from "path";

// append ./ if necessary
if (localFile.substr(0, 1) !== ".") {
if (localFile.substring(0, 1) !== ".") {
localFile = "./" + localFile;
}
// remove extension
localFile = localFile.substr(0, localFile.length - path.extname(localFile).length);
localFile = localFile.substring(0, localFile.length - path.extname(localFile).length);
return localFile;
}

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