cf-nodejs-logging-support
Advanced tools
Comparing version 6.14.0 to 6.14.1
@@ -911,3 +911,3 @@ const util = require("util"); | ||
var verifyAndDecodeJWT = function (token, key) { | ||
if (key == null || !token) { | ||
if (!token || !key || typeof key !== "string") { | ||
return null; // no public key or jwt provided | ||
@@ -914,0 +914,0 @@ } |
{ | ||
"name": "cf-nodejs-logging-support", | ||
"version": "6.14.0", | ||
"version": "6.14.1", | ||
"description": "Logging tool for Cloud Foundry", | ||
@@ -21,3 +21,3 @@ "keywords": [ | ||
"engines": { | ||
"node": ">=8.0.0" | ||
"node": ">=12.0.0" | ||
}, | ||
@@ -32,7 +32,7 @@ "dependencies": { | ||
"import-fresh": "^3.2.1", | ||
"mocha": "^7.1.1", | ||
"mocha": "^10.2.0", | ||
"mock-require": "^3.0.3", | ||
"node-mocks-http": "^1.8.1", | ||
"nyc": "^15.0.1", | ||
"rewire": "^4.0.1", | ||
"rewire": "^6.0.0", | ||
"sinon": "^9.0.1", | ||
@@ -39,0 +39,0 @@ "winston": "^3.2.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
82883