module.exports = function idhmLevel(id) { switch (id) { case 1: return 'Muito Baixa'; case 2: return 'Baixo'; case 3: return 'Médio'; case 4: return 'Alto'; case 5: return 'Muito Alto'; default: return 'Não classificado'; } };