Skip to content

Instantly share code, notes, and snippets.

@tbhaxor
Created March 3, 2019 20:31
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save tbhaxor/22086b9100c65f8f004cf0e2fafd19e1 to your computer and use it in GitHub Desktop.
Save tbhaxor/22086b9100c65f8f004cf0e2fafd19e1 to your computer and use it in GitHub Desktop.
var DAY;
(function (DAY) {
DAY[DAY["SUNDAY"] = 0] = "SUNDAY";
DAY[DAY["MONDAY"] = 1] = "MONDAY";
DAY[DAY["TUESDAY"] = 2] = "TUESDAY";
DAY[DAY["WEDNESDAY"] = 3] = "WEDNESDAY";
DAY[DAY["THURSDAY"] = 4] = "THURSDAY";
DAY[DAY["FRIDAY"] = 5] = "FRIDAY";
DAY[DAY["SATURDAY"] = 6] = "SATURDAY";
})(DAY || (DAY = {}));
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment