Travis build: 1620

This commit is contained in:
30secondsofcode
2019-12-11 18:39:58 +00:00
parent df6abd7ced
commit ad07ba1012
14 changed files with 872 additions and 872 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