Travis build: 2163 [cron]

This commit is contained in:
30secondsofcode
2018-06-18 21:28:08 +00:00
parent 3197d6ddce
commit 3e16d2ffa4
10 changed files with 1473 additions and 1444 deletions

View File

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