@yookue/ts-lang-utils
Version:
Common lang utilities for typescript
23 lines • 1.07 kB
JavaScript
export { addDay } from "./addDay";
export { addMonth } from "./addMonth";
export { addYear } from "./addYear";
export { formatDateTime } from "./formatDateTime";
export { getCurrentDate } from "./getCurrentDate";
export { getCurrentDateTime } from "./getCurrentDateTime";
export { getCurrentTime } from "./getCurrentTime";
export { getEndOfDay } from "./getEndOfDay";
export { getEndOfMonth } from "./getEndOfMonth";
export { getEndOfYear } from "./getEndOfYear";
export { getStartOfDay } from "./getStartOfDay";
export { getStartOfMonth } from "./getStartOfMonth";
export { getStartOfYear } from "./getStartOfYear";
export { getTimezone } from "./getTimezone";
export { isFirstDayOfMonth } from "./isFirstDayOfMonth";
export { isLastDayOfMonth } from "./isLastDayOfMonth";
export { isLeapYear } from "./isLeapYear";
export { isSameDay } from "./isSameDay";
export { isSameMonth } from "./isSameMonth";
export { isSameYear } from "./isSameYear";
export { isTomorrow } from "./isTomorrow";
export { isWeekend } from "./isWeekend";
export { isYesterday } from "./isYesterday";