From 601392403478487747acd04ccaae1c53294ca117 Mon Sep 17 00:00:00 2001 From: Ryan Ponce Date: Wed, 28 Nov 2018 17:13:04 -0500 Subject: [PATCH] Replace calendar months const enum with enum --- packages/datetime/src/common/months.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/datetime/src/common/months.ts b/packages/datetime/src/common/months.ts index 2836657315..e9be01c04d 100644 --- a/packages/datetime/src/common/months.ts +++ b/packages/datetime/src/common/months.ts @@ -10,7 +10,7 @@ * Note that the enum values are numbers (with January as `0`) so they can be * easily compared to `date.getMonth()`. */ -export const enum Months { +export enum Months { JANUARY = 0, FEBRUARY = 1, MARCH = 2,