mirror of
https://github.com/Tria-plc/emaui.git
synced 2026-08-27 19:00:56 +00:00
13 lines
377 B
JavaScript
13 lines
377 B
JavaScript
'use client';
|
|
import dayjs from 'dayjs';
|
|
|
|
function toDateString(value) {
|
|
return value == null || value === "" ? value : dayjs(value).format("YYYY-MM-DD");
|
|
}
|
|
function toDateTimeString(value) {
|
|
return value == null || value === "" ? value : dayjs(value).format("YYYY-MM-DD HH:mm:ss");
|
|
}
|
|
|
|
export { toDateString, toDateTimeString };
|
|
//# sourceMappingURL=to-date-string.mjs.map
|