All files stringify.js

0% Statements 0/8
0% Branches 0/6
0% Functions 0/2
0% Lines 0/5
1 2 3 4 5 6 7 8               
import isTwelveHourTime from './is-twelve-hour-time';
// stringify
export default groups => {
  if (isTwelveHourTime(groups))
    return groups.slice(0, -1).join(':') + ' ' + groups[groups.length - 1];
  return groups.join(':');
};