mirror of
https://github.com/node-red/node-red-nodes.git
synced 2023-10-10 13:36:58 +02:00
clarify linting confusion
This commit is contained in:
parent
c21fb22918
commit
fbad6e4c2d
@ -17,7 +17,7 @@ module.exports = function(RED) {
|
||||
|
||||
//console.log(this);
|
||||
|
||||
var clustered = !(this.topology === "direct") || false;
|
||||
var clustered = (this.topology !== "direct") || false;
|
||||
|
||||
var url = "mongodb://";
|
||||
if (this.topology === "dnscluster") {
|
||||
|
@ -1,6 +1,6 @@
|
||||
{
|
||||
"name" : "node-red-node-mongodb",
|
||||
"version" : "0.2.0",
|
||||
"version" : "0.2.1",
|
||||
"description" : "Node-RED nodes to talk to an Mongo database",
|
||||
"dependencies" : {
|
||||
"mongodb" : "^3.6.2"
|
||||
|
Loading…
Reference in New Issue
Block a user