lwmqn-util
Advanced tools
Comparing version 0.5.2 to 0.5.3
@@ -53,3 +53,3 @@ const lwm2mid = require('lwm2m-id') | ||
ut.oidNum = function (oid) { | ||
let oidItem = lwm2mid.getOid(oid) | ||
const oidItem = lwm2mid.getOid(oid) | ||
@@ -86,3 +86,3 @@ if (oidItem) { | ||
ut.ridNum = function (oid, rid) { | ||
let ridItem = lwm2mid.getRid(oid, rid) | ||
const ridItem = lwm2mid.getRid(oid, rid) | ||
@@ -176,3 +176,3 @@ if (typeof rid === 'undefined') rid = oid | ||
for (const key in obj) { | ||
if (obj.hasOwnProperty(key)) { | ||
if (Object.prototype.hasOwnProperty.call(obj, key)) { | ||
const n = obj[key] | ||
@@ -179,0 +179,0 @@ // Tricky: objList is an array, don't buid its full path, or updating new list will fail |
{ | ||
"name": "lwmqn-util", | ||
"version": "0.5.2", | ||
"version": "0.5.3", | ||
"description": "Utility for LWMQN mqtt-shepherd server and mqtt-node client libraries", | ||
@@ -33,8 +33,8 @@ "main": "index.js", | ||
"chai": "^4.2.0", | ||
"coveralls": "^3.0.3", | ||
"mocha": "^6.1.4", | ||
"coveralls": "^3.0.6", | ||
"mocha": "^6.2.0", | ||
"nyc": "^14.1.1", | ||
"snazzy": "^8.0.0", | ||
"standard": "^12.0.1" | ||
"standard": "^13.0.1" | ||
} | ||
} |
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
Major refactor
Supply chain riskPackage has recently undergone a major refactor. It may be unstable or indicate significant internal changes. Use caution when updating to versions that include significant changes.
Found 1 instance in 1 package
New author
Supply chain riskA new npm collaborator published a version of the package for the first time. New collaborators are usually benign additions to a project, but do indicate a change to the security surface area of a package.
Found 1 instance in 1 package
77724
0