UNPKG

@redocly/theme

Version:

Shared UI components lib

10 lines (7 loc) 258 B
export function formatDateWithoutTimeZone(date?: Date | null) { if (!date) return date; return `${date.getFullYear()}-${padZero(date.getMonth() + 1)}-${padZero(date.getDate())}`; } function padZero(num: number) { return num < 10 ? '0' + num : num; }