Travis build: 563 [cron]

This commit is contained in:
30secondsofcode
2018-09-29 20:15:22 +00:00
parent 920f8a445b
commit eca8ab3152
9 changed files with 1758 additions and 1601 deletions

View File

@ -4,6 +4,6 @@ const getMeridiemSuffixOfInteger = num =>
: num === 12
? 12 + 'pm'
: num < 12
? num % 12 + 'am'
: num % 12 + 'pm';
? (num % 12) + 'am'
: (num % 12) + 'pm';
module.exports = getMeridiemSuffixOfInteger;