We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f57a808 commit fefd302Copy full SHA for fefd302
src/common/datetime/check_time.ts
@@ -6,6 +6,9 @@ import { WEEKDAY_MAP, type WeekdayShort } from "./weekday";
6
7
/**
8
* Parse a time string (HH:MM or HH:MM:SS) and set it on today's date in the given timezone
9
+ * @param timeString The time string to parse
10
+ * @param timezone The timezone to use
11
+ * @returns The Date object
12
*/
13
const parseTimeString = (timeString: string, timezone: string): Date => {
14
const parts = timeString.split(":");
0 commit comments