Skip to content

Commit

Permalink
Replace calendar months const enum with enum (#3182)
Browse files Browse the repository at this point in the history
  • Loading branch information
ryanponce authored and giladgray committed Nov 29, 2018
1 parent 7b048d3 commit 628f4ae
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/datetime/src/common/months.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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,
Expand Down

1 comment on commit 628f4ae

@blueprint-bot
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Replace calendar months const enum with enum (#3182)

Previews: documentation | landing | table

Please sign in to comment.