node-opcua-utils
Advanced tools
Comparing version 2.63.0 to 2.63.1
@@ -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
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
68260