LogStore.js : JSHint compliance and slight reformat

This commit is contained in:
ansuz
2016-04-12 14:50:32 +02:00
parent e6ab03164c
commit 07fdeebe17

View File

@@ -2,7 +2,7 @@
var message = function(file, msg) { var message = function(file, msg) {
file.write(msg+"\n"); file.write(msg+"\n");
} };
var create = module.exports.create = function(filePath, backingStore) { var create = module.exports.create = function(filePath, backingStore) {
@@ -14,7 +14,5 @@
backingStore.message(channel, msg, callback); backingStore.message(channel, msg, callback);
}, },
getMessages: backingStore.getMessages getMessages: backingStore.getMessages
} };
};
}