10 lines
171 B
JavaScript
10 lines
171 B
JavaScript
|
export function formatDate(value, format) {
|
||
|
if (!value) {
|
||
|
return '';
|
||
|
}
|
||
|
if (Array.isArray(format)) {
|
||
|
format = format[0];
|
||
|
}
|
||
|
return value.format(format);
|
||
|
}
|