All files get-group-id.js

0% Statements 0/11
0% Branches 0/8
0% Functions 0/1
0% Lines 0/6
1 2 3 4 5 6 7 8               
export default index => {
  if (index < 3) return 0;
  if (index < 6) return 1;
  if (index < 9) return 2;
  if (index < 13) return 3;
  return 4;
};