Merge remote-tracking branch 'origin/develop' into develop

This commit is contained in:
RiotTranslate 2017-05-30 16:28:57 +00:00
commit 0e262e70f3

View file

@ -56,7 +56,7 @@ function twelveHourTime(date) {
const minutes = pad(date.getMinutes());
const ampm = date.getHours() >= 12 ? 'PM' : 'AM';
hours = pad(hours ? hours : 12);
return `${hours}:${minutes} ${ampm}`;
return `${hours}:${minutes}${ampm}`;
}
module.exports = {