Skip to content
Snippets Groups Projects
booleanVariable.js 182 B
Newer Older
Hamer Iboshi's avatar
Hamer Iboshi committed
module.exports = function booleanVariable(id) {
  if (id == null)
    return 'Não Declarado';
  else if (id == false)
    return 'Não';
  else if (id == true)
    return 'Sim';
};