mirror of
				https://github.com/node-red/node-red-nodes.git
				synced 2025-03-01 10:37:43 +00:00 
			
		
		
		
	simplify tweet node object check for humans
This commit is contained in:
		| @@ -26,7 +26,8 @@ module.exports = function(RED) { | ||||
|         var node = this; | ||||
|  | ||||
|         var isObject = function(a) { | ||||
|             return (!!a) && (a.constructor == Object); | ||||
|             if ((typeof(a) === "object") && (!Buffer.isBuffer(a)) && (!Array.isArray(a))) { return true; } | ||||
|             else { return false; } | ||||
|         }; | ||||
|  | ||||
|         this.on("input",function(msg) { | ||||
|   | ||||
| @@ -1,6 +1,6 @@ | ||||
| { | ||||
|     "name"          : "node-red-node-dweetio", | ||||
|     "version"       : "0.0.9", | ||||
|     "version"       : "0.0.10", | ||||
|     "description"   : "A Node-RED node to send and receive simple dweets", | ||||
|     "dependencies"  : { | ||||
|         "node-dweetio"   : "0.0.11" | ||||
|   | ||||
		Reference in New Issue
	
	Block a user