From ec43fc4fe2c56a1ab0aadc2004edda93c68413df Mon Sep 17 00:00:00 2001 From: Anna Thomas Date: Thu, 27 Nov 2014 13:12:47 +0000 Subject: [PATCH] Removed unused code --- red/nodes/registry.js | 9 --------- 1 file changed, 9 deletions(-) diff --git a/red/nodes/registry.js b/red/nodes/registry.js index e2e1eb6a0..9e81aa4e4 100644 --- a/red/nodes/registry.js +++ b/red/nodes/registry.js @@ -46,15 +46,6 @@ function filterNodeInfo(n) { return r; } -function isEmpty(obj) { - for(var prop in obj) { - if(obj.hasOwnProperty(prop)) { - return false; - } - } - return true; -} - function getModule(id) { return id.split("/")[0]; }