8 lines
190 B
TypeScript
8 lines
190 B
TypeScript
import { UtcDate } from "@repo/rdx-ddd";
|
|
|
|
export function formatDateDTO(dateString: string) {
|
|
const result = UtcDate.createFromISO(dateString).data;
|
|
|
|
return result.toEuropeanString();
|
|
}
|