From 35aed787ae88c33c0a79fec4d73dd8ba90a438e9 Mon Sep 17 00:00:00 2001 From: Dave Conway-Jones Date: Wed, 28 Oct 2015 23:57:09 +0000 Subject: [PATCH] simplify tweet node object check for humans --- social/dweetio/55-dweetio.js | 3 ++- social/dweetio/package.json | 2 +- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/social/dweetio/55-dweetio.js b/social/dweetio/55-dweetio.js index 5d83e75c..6376097e 100644 --- a/social/dweetio/55-dweetio.js +++ b/social/dweetio/55-dweetio.js @@ -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) { diff --git a/social/dweetio/package.json b/social/dweetio/package.json index f5a2a55f..9f0dabe4 100644 --- a/social/dweetio/package.json +++ b/social/dweetio/package.json @@ -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"