From d8de60a02d070bf8ab1e80c778246148ef4f1904 Mon Sep 17 00:00:00 2001 From: Andrew Stewart Date: Mon, 3 Mar 2014 14:33:29 -0800 Subject: [PATCH] Clean up var declarations in robot.js --- lib/robot.js | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/lib/robot.js b/lib/robot.js index bbc6b02..c553fce 100644 --- a/lib/robot.js +++ b/lib/robot.js @@ -15,10 +15,10 @@ require("./adaptor"); require("./device"); require("./driver"); require('./digital-pin'); -var Async = require("async"); -var EventEmitter = require('events').EventEmitter; -var namespace = require('node-namespace'); +var Async = require("async"), + EventEmitter = require('events').EventEmitter, + namespace = require('node-namespace'); // A Robot is the primary interface for interacting with a collection of physical // computing capabilities.