From fe092bc358aea839dbf2a1623f2c168ba1e8a855 Mon Sep 17 00:00:00 2001 From: Simo Kinnunen Date: Tue, 15 Apr 2014 11:30:39 +0900 Subject: [PATCH] Fix 'line is too long' warning. --- lib/db/tables.js | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/lib/db/tables.js b/lib/db/tables.js index 46cf5e4d..424ebb43 100644 --- a/lib/db/tables.js +++ b/lib/db/tables.js @@ -8,7 +8,11 @@ module.exports = { primaryKey: 'serial' , indexes: { owner: function(device) { - return r.branch(device('present'), device('owner')('email'), r.literal()) + return r.branch( + device('present') + , device('owner')('email') + , r.literal() + ) } , lastHeartbeatAt: null }