mirror of
https://github.com/ant-design/ant-design.git
synced 2024-12-12 15:19:58 +08:00
12 lines
294 B
TypeScript
12 lines
294 B
TypeScript
|
import * as moment from 'moment';
|
||
|
|
||
|
export function formatDate(value: moment.Moment | undefined | null, format: string | string[]): string {
|
||
|
if (!value) {
|
||
|
return '';
|
||
|
}
|
||
|
if (Array.isArray(format)) {
|
||
|
format = format[0];
|
||
|
}
|
||
|
return value.format(format);
|
||
|
}
|