forked from jmug/cactoide
13 lines
427 B
TypeScript
13 lines
427 B
TypeScript
export const formatDate = (dateString: string): string => {
|
|
const date = new Date(dateString);
|
|
const year = date.getFullYear();
|
|
const month = String(date.getMonth() + 1).padStart(2, '0');
|
|
const day = String(date.getDate()).padStart(2, '0');
|
|
return `${year}/${month}/${day}`;
|
|
};
|
|
|
|
export const formatTime = (timeString: string): string => {
|
|
const [hours, minutes] = timeString.split(':');
|
|
return `${hours}:${minutes}`;
|
|
};
|