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