- OpenAPI: add missing endpoints (add-from-url, subscriptions, public availability) - OpenAPI: CalendarSubscription schema, Subscriptions tag - Frontend app - Migrations: count_for_availability, subscriptions_sync, user_preferences, calendar_settings - Config, rate limit, auth, calendar, booking, ICS, availability, user service updates Made-with: Cursor
38 lines
1.0 KiB
JavaScript
38 lines
1.0 KiB
JavaScript
import { startOfMinute } from "./startOfMinute.js";
|
|
|
|
/**
|
|
* @name isSameMinute
|
|
* @category Minute Helpers
|
|
* @summary Are the given dates in the same minute (and hour and day)?
|
|
*
|
|
* @description
|
|
* Are the given dates in the same minute (and hour and day)?
|
|
*
|
|
* @param laterDate - The first date to check
|
|
* @param earlierDate - The second date to check
|
|
*
|
|
* @returns The dates are in the same minute (and hour and day)
|
|
*
|
|
* @example
|
|
* // Are 4 September 2014 06:30:00 and 4 September 2014 06:30:15 in the same minute?
|
|
* const result = isSameMinute(
|
|
* new Date(2014, 8, 4, 6, 30),
|
|
* new Date(2014, 8, 4, 6, 30, 15)
|
|
* )
|
|
* //=> true
|
|
*
|
|
* @example
|
|
* // Are 4 September 2014 06:30:00 and 5 September 2014 06:30:00 in the same minute?
|
|
* const result = isSameMinute(
|
|
* new Date(2014, 8, 4, 6, 30),
|
|
* new Date(2014, 8, 5, 6, 30)
|
|
* )
|
|
* //=> false
|
|
*/
|
|
export function isSameMinute(laterDate, earlierDate) {
|
|
return +startOfMinute(laterDate) === +startOfMinute(earlierDate);
|
|
}
|
|
|
|
// Fallback for modularized imports:
|
|
export default isSameMinute;
|