UNPKG

@renderlesskit/react

Version:

Collection of headless components/hooks that are accessible, composable, customizable from low level to build your own UI & Design System powered by Reakit

11 lines 566 B
export var toUTCString = date => { return date.toISOString().slice(0, 10); }; export var toUTCRangeString = date => { return { start: toUTCString(date.start), end: toUTCString(date.end) }; }; export { addDays, addMonths, addWeeks, addYears, endOfMonth, getDate, getDaysInMonth, getHours, getMinutes, getMonth, getSeconds, getYear, isSameDay, isSameMonth, isWeekend, setDate, setDay, setHours, setMinutes, setMonth, setSeconds, setYear, startOfDay, startOfMonth, subDays, subMonths, subWeeks, subYears } from "date-fns"; //# sourceMappingURL=date.js.map