Socket
Socket
Sign inDemoInstall

node-opcua-debug

Package Overview
Dependencies
Maintainers
1
Versions
119
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

node-opcua-debug - npm Package Compare versions

Comparing version 2.88.0 to 2.90.0

2

dist/make_buffer_from_trace.d.ts

@@ -5,2 +5,2 @@ /// <reference types="node" />

}): string;
export declare function makeBufferFromTrace(func: string | (() => void)): Buffer;
export declare function makeBufferFromTrace(func: string): Buffer;

@@ -30,3 +30,6 @@ "use strict";

// find prefix
const prefixLength = lines[0].match(/[0-9a-fA-F:]* +/)[0].length;
const m = lines[0].match(/[0-9a-fA-F:]* +/);
if (!m)
return hexLine;
const prefixLength = m[0].length;
for (let line of lines) {

@@ -33,0 +36,0 @@ line = line.trim();

{
"name": "node-opcua-debug",
"version": "2.88.0",
"version": "2.90.0",
"description": "pure nodejs OPCUA SDK - module -debug",

@@ -36,3 +36,3 @@ "scripts": {

"homepage": "http://node-opcua.github.io/",
"gitHead": "0c20078b474f36855b799557f8fe931dbe20c2ca"
"gitHead": "d55f9150c3ffa5b86fbe1a0baba69a2543c3090a"
}

@@ -28,3 +28,5 @@ /**

// find prefix
const prefixLength = lines[0]!.match(/[0-9a-fA-F:]* +/)![0].length;
const m = lines[0]!.match(/[0-9a-fA-F:]* +/);
if (!m) return hexLine;
const prefixLength = m[0].length;

@@ -48,3 +50,3 @@ for (let line of lines) {

// tslint:disable:ban-types
export function makeBufferFromTrace(func: string | (()=>void)): Buffer {
export function makeBufferFromTrace(func: string): Buffer {
if (typeof func === "string") {

@@ -51,0 +53,0 @@ return makeBuffer(hexString(func as string));

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