Travis build: 2163 [cron]
This commit is contained in:
@ -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;
|
||||
Reference in New Issue
Block a user