All files get-base.js

0% Statements 0/7
0% Branches 0/6
0% Functions 0/1
0% Lines 0/5
1 2 3 4 5 6 7             
// getBase
export default (groupId, twelveHourTime) => {
  if (!groupId) return twelveHourTime ? 12 : 24;
  if (groupId < 3) return 60;
  return 1000;
};