Remove unneeded comparison
Showing
2 changed files
with
2 additions
and
2 deletions
... | @@ -63,7 +63,7 @@ | ... | @@ -63,7 +63,7 @@ |
63 | }; | 63 | }; |
64 | 64 | ||
65 | const middlewareWrapper = (config) => { | 65 | const middlewareWrapper = (config) => { |
66 | if (config === null || config === {} || config === undefined) { | 66 | if (config === null || config === undefined) { |
67 | config = defaultConfig; | 67 | config = defaultConfig; |
68 | } | 68 | } |
69 | 69 | ... | ... |
1 | { | 1 | { |
2 | "name": "express-status-monitor", | 2 | "name": "express-status-monitor", |
3 | "version": "0.0.4", | 3 | "version": "0.0.5", |
4 | "description": "Monitoring for Express-based Node applications", | 4 | "description": "Monitoring for Express-based Node applications", |
5 | "main": "app.js", | 5 | "main": "app.js", |
6 | "keywords": [ | 6 | "keywords": [ | ... | ... |
-
Please register or sign in to post a comment