mirror of
https://github.com/nexus-stc/hyperboria
synced 2025-01-06 00:35:55 +01:00
12 lines
233 B
JavaScript
12 lines
233 B
JavaScript
|
import dateFormat from 'dateformat'
|
||
|
|
||
|
export function getIssuedDate (unixtime) {
|
||
|
if (!unixtime) return null
|
||
|
try {
|
||
|
return dateFormat(new Date(unixtime * 1000), 'yyyy')
|
||
|
} catch (e) {
|
||
|
console.error(e)
|
||
|
return null
|
||
|
}
|
||
|
}
|