Skip to content
Snippets Groups Projects

Fix issue 953

Merged lgtg20 requested to merge fix-issue-953 into development
3 files
+ 89
51
Compare changes
  • Side-by-side
  • Inline
Files
3
+ 38
0
 
/*
 
Copyright (C) 2016 Centro de Computacao Cientifica e Software Livre
 
Departamento de Informatica - Universidade Federal do Parana - C3SL/UFPR
 
 
This file is part of simcaq-node.
 
 
simcaq-node is free software: you can redistribute it and/or modify
 
it under the terms of the GNU General Public License as published by
 
the Free Software Foundation, either version 3 of the License, or
 
(at your option) any later version.
 
 
simcaq-node is distributed in the hope that it will be useful,
 
but WITHOUT ANY WARRANTY; without even the implied warranty of
 
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
 
GNU General Public License for more details.
 
 
You should have received a copy of the GNU General Public License
 
along with simcaq-node. If not, see <https://www.gnu.org/licenses/>.
 
*/
 
 
module.exports = function ageRange19to64(id) {
 
switch (id) {
 
case 6:
 
return '19 a 24 anos';
 
case 7:
 
return '25 a 29 anos';
 
case 8:
 
return '30 a 40 anos';
 
case 9:
 
return '41 a 50 anos';
 
case 10:
 
return '51 a 64 anos';
 
case 11:
 
return 'Mais que 64 anos';
 
default:
 
return 'Não declarada';
 
}
 
};
Loading