Fix Function node

accidental leakage of in-progress work
This commit is contained in:
Nick O'Leary 2014-04-02 23:56:46 +01:00
parent bcefa6c9ef
commit 214338eb62
1 changed files with 47 additions and 48 deletions

View File

@ -14,7 +14,7 @@
* limitations under the License.
**/
module.exports = function(RED) {
var RED = require(process.env.NODE_RED_HOME+"/red/red");
var util = require("util");
var vm = require("vm");
@ -69,4 +69,3 @@ module.exports = function(RED) {
RED.nodes.registerType("function",FunctionNode);
RED.library.register("functions");
}