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