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