chore: shorten DAY_MAP keys

This commit is contained in:
2024-02-09 17:54:25 -06:00
committed by doprz
parent 8493b482c4
commit b480fa28b2

View File

@@ -4,13 +4,13 @@ import { Serialized } from 'chrome-extension-toolkit';
* a map of the days of the week that a class is taught, and the corresponding abbreviation * a map of the days of the week that a class is taught, and the corresponding abbreviation
*/ */
export const DAY_MAP = { export const DAY_MAP = {
MON: 'Monday', M: 'Monday',
TUE: 'Tuesday', T: 'Tuesday',
WED: 'Wednesday', W: 'Wednesday',
THU: 'Thursday', TH: 'Thursday',
FRI: 'Friday', F: 'Friday',
SAT: 'Saturday', S: 'Saturday',
SUN: 'Sunday', SU: 'Sunday',
} as const; } as const;
/** A day of the week that a class is taught */ /** A day of the week that a class is taught */