Travis build: 1670

This commit is contained in:
30secondsofcode
2019-12-31 11:21:41 +00:00
parent e4fcaabed8
commit d51b430122
13 changed files with 163 additions and 119 deletions

View File

@ -12,10 +12,10 @@ const getMeridiemSuffixOfInteger = num =>
num === 0 || num === 24
? 12 + 'am'
: num === 12
? 12 + 'pm'
: num < 12
? (num % 12) + 'am'
: (num % 12) + 'pm';
? 12 + 'pm'
: num < 12
? (num % 12) + 'am'
: (num % 12) + 'pm';
```
```js