Skip to content

Commit 0221714

Browse files
committed
- Comment
1 parent d14e921 commit 0221714

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/representMonth.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ export const representMonth = function (args = expandDefaults(defaults)) {
1111

1212
const firstOfMonth = new representMonth.DateAdapter(date.valueOf())
1313
firstOfMonth.setDate(1)
14-
const firstDayOfWeek = firstOfMonth.getDay() //?
14+
const firstDayOfWeek = firstOfMonth.getDay()
1515
const numberOfDays = getDaysInMonth(1 + date.getMonth(), date.getFullYear())
1616
const prependAdjustment = firstDayOfWeek > startingDayOfWeek ? 0 : 7
1717
const prepend = (new Array((prependAdjustment + firstDayOfWeek - startingDayOfWeek) % 7))

0 commit comments

Comments
 (0)