Skip to content
Snippets Groups Projects
Commit 99e06b06 authored by Glenda Train's avatar Glenda Train
Browse files

fix convert age range

parent 6d816913
No related branches found
No related tags found
1 merge request!131Fix age range
Pipeline #
module.exports = function ageRange(id) {
switch (id) {
case 1:
return '0-3';
return '0 a 3 anos';
case 2:
return '4-5';
return '4 a 5 anos';
case 3:
return '6-10';
return '6 a 10 anos';
case 4:
return '11-14';
return '11 a 14 anos';
case 5:
return '15-17';
return '15 a 17 anos';
case 6:
return '18-24';
return '18 a 24 anos';
default:
return 'Não declarada';
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment