mirror of
https://github.com/shlinkio/shlink-web-client.git
synced 2024-12-29 12:28:24 +03:00
14 lines
628 B
TypeScript
14 lines
628 B
TypeScript
|
import * as moment from 'moment';
|
||
|
|
||
|
type MomentOrString = moment.Moment | string;
|
||
|
type NullableDate = MomentOrString | null;
|
||
|
|
||
|
const isMomentObject = (date: moment.Moment | string): date is moment.Moment => typeof (date as moment.Moment).format === 'function';
|
||
|
|
||
|
const formatDateFromFormat = (date?: NullableDate, format?: string): NullableDate | undefined =>
|
||
|
!date || !isMomentObject(date) ? date : date.format(format);
|
||
|
|
||
|
export const formatDate = (format = 'YYYY-MM-DD') => (date?: NullableDate) => formatDateFromFormat(date, format);
|
||
|
|
||
|
export const formatIsoDate = (date: NullableDate) => formatDateFromFormat(date, undefined);
|