Completed
Push — master ( 44f88b...6ceba7 )
by Seth
29s
created

utils.js ➔ humanDate   A

Complexity

Conditions 1
Paths 1

Size

Total Lines 11

Duplication

Lines 0
Ratio 0 %

Importance

Changes 1
Bugs 0 Features 0
Metric Value
cc 1
c 1
b 0
f 0
nc 1
nop 1
dl 0
loc 11
rs 9.4285
1
export function humanDate(timestamp) {
2
    return new Date(timestamp).toLocaleDateString(undefined, {
3
        hour12: true,
4
        weekday: "long",
5
        day: "numeric",
6
        month: "long",
7
        year: "numeric",
8
        hour: "numeric",
9
        minute: "2-digit"
10
    })
11
}