MCPcopy Create free account
hub / github.com/ZenNotes/zennotes / firstOfMonth

Function firstOfMonth

packages/app-core/src/components/TasksCalendar.tsx:50–52  ·  view source on GitHub ↗
(d: Date)

Source from the content-addressed store, hash-verified

48const WEEKDAY_LABELS = ['Sun', 'Mon', 'Tue', 'Wed', 'Thu', 'Fri', 'Sat']
49
50function firstOfMonth(d: Date): Date {
51 return new Date(d.getFullYear(), d.getMonth(), 1)
52}
53
54function addMonths(d: Date, n: number): Date {
55 return new Date(d.getFullYear(), d.getMonth() + n, 1)

Callers 5

buildMonthGridFunction · 0.85
TasksCalendarFunction · 0.85
moveSelectionFunction · 0.85
goToTodayFunction · 0.85
handlerFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected