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