module.exports.active = function (lastId, id) { return lastId === id; } module.exports.show = function (message, type) { return message && message.type === type } module.exports.returnBottomId = function (index) { return "bottom-" + index; }