mirror of
https://github.com/unraid/api.git
synced 2026-01-19 06:59:40 -06:00
10 lines
293 B
TypeScript
10 lines
293 B
TypeScript
import dayjs from 'dayjs';
|
|
import localizedFormat from 'dayjs/plugin/localizedFormat';
|
|
|
|
/** @see https://day.js.org/docs/en/display/format#localized-formats */
|
|
dayjs.extend(localizedFormat);
|
|
|
|
const formatDate = (date: number): string => dayjs(date).format('llll');
|
|
|
|
export default formatDate;
|