Socket
Socket
Sign inDemoInstall

node-opcua-utils

Package Overview
Dependencies
Maintainers
1
Versions
129
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

node-opcua-utils - npm Package Compare versions

Comparing version 2.63.0 to 2.63.1

2

dist/hrtime.js

@@ -35,3 +35,3 @@ "use strict";

}
exports.hrtime = typeof process === "object" ? process.hrtime : hrtime_for_browser;
exports.hrtime = typeof process === "object" ? (process.hrtime || hrtime_for_browser) : hrtime_for_browser;
//# sourceMappingURL=hrtime.js.map
{
"name": "node-opcua-utils",
"version": "2.63.0",
"version": "2.63.1",
"description": "pure nodejs OPCUA SDK - module -utils",

@@ -38,3 +38,3 @@ "main": "./dist/index.js",

"homepage": "http://node-opcua.github.io/",
"gitHead": "df4335584455009c6caa21ed6a2fa42caa9104ed"
"gitHead": "d37385314fce703c1cc197104c592df03b2663fb"
}

@@ -37,2 +37,2 @@ // polyfil for window.performance.now

export type HRTimeFunc = (time?: [number, number]) => [number, number];
export const hrtime: HRTimeFunc = typeof process === "object" ? (process.hrtime as HRTimeFunc) : hrtime_for_browser;
export const hrtime: HRTimeFunc = typeof process === "object" ? (process.hrtime as HRTimeFunc || hrtime_for_browser) : hrtime_for_browser;

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