mirror of
https://github.com/unraid/api.git
synced 2026-02-18 05:58:28 -06:00
6 lines
143 B
TypeScript
6 lines
143 B
TypeScript
import dayjs from 'dayjs';
|
|
|
|
const formatDate = (date: string): string => dayjs(parseInt(date, 10)).format('llll');
|
|
|
|
export default formatDate;
|