node-opcua-object-registry
Advanced tools
Comparing version 2.55.0 to 2.56.0
@@ -51,3 +51,3 @@ "use strict"; | ||
for (const [key, cachedObject] of Object.entries(this._cache)) { | ||
(0, node_opcua_assert_1.assert)(cachedObject.hasOwnProperty("_____trace")); | ||
(0, node_opcua_assert_1.assert)(Object.prototype.hasOwnProperty.call(cachedObject, "_____trace")); | ||
str += " " + key + cachedObject._____trace + "\n"; | ||
@@ -54,0 +54,0 @@ } |
{ | ||
"name": "node-opcua-object-registry", | ||
"version": "2.55.0", | ||
"version": "2.56.0", | ||
"description": "pure nodejs OPCUA SDK - module -object-registry", | ||
@@ -8,2 +8,4 @@ "main": "./dist/index.js", | ||
"build": "tsc -b", | ||
"lint": "eslint source test", | ||
"format": "prettier --write source test", | ||
"clean": "node -e \"require('rimraf').sync('dist');\"", | ||
@@ -34,3 +36,3 @@ "test": "mocha" | ||
"homepage": "http://node-opcua.github.io/", | ||
"gitHead": "28fdbfe1c5306fd0e69758ccacfa2c6d1722115c" | ||
"gitHead": "9f6eac1c658c0d182fbe03cf58f799af468615eb" | ||
} |
@@ -64,3 +64,3 @@ /** | ||
for (const [key, cachedObject] of Object.entries(this._cache) as any[]) { | ||
assert(cachedObject.hasOwnProperty("_____trace")); | ||
assert(Object.prototype.hasOwnProperty.call(cachedObject, "_____trace")); | ||
str += " " + key + cachedObject._____trace + "\n"; | ||
@@ -67,0 +67,0 @@ } |
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
10173