@@ -14,9 +14,11 @@ export const THURSDAY = 4;
1414export const FRIDAY = 5 ;
1515export const SATURDAY = 6 ;
1616
17- export enum DayOfWeek { SUNDAY , MONDAY , TUESDAY , WEDNESDAY , THURSDAY , FRIDAY , SATURDAY } ;
17+ // noinspection JSUnusedGlobalSymbols
18+ export enum DayOfWeek { SUNDAY , MONDAY , TUESDAY , WEDNESDAY , THURSDAY , FRIDAY , SATURDAY }
19+ // noinspection JSUnusedGlobalSymbols
1820export enum Month { JANUARY = 1 , FEBRUARY , MARCH , APRIL , MAY , JUNE ,
19- JULY , AUGUST , SEPTEMBER , OCTOBER , NOVEMBER , DECEMBER } ;
21+ JULY , AUGUST , SEPTEMBER , OCTOBER , NOVEMBER , DECEMBER }
2022
2123/**
2224 * Constant for indicating the last occurrence of a particular day of the week (e.g. the last Tuesday) of a given month.
@@ -188,7 +190,7 @@ export function getDayNumberJulian(yearOrDate: YearOrDate, month?: number, day?:
188190/**
189191 * Always returns 1. This function exists only to parallel getFirstDateInMonth, which isn't always 1 when the
190192 * Gregorian change date is not fixed.
191- * @returns First date of calender month.
193+ * @returns First date of calendar month.
192194 */
193195// eslint-disable-next-line @typescript-eslint/no-unused-vars
194196export function getFirstDateInMonth_SGC ( year : number , month : number ) : number {
0 commit comments