MCPcopy
hub / github.com/date-fns/date-fns / nextWeek

Function nextWeek

pkgs/core/src/locale/mk/_lib/formatRelative/index.ts:50–64  ·  view source on GitHub ↗
(day: Day)

Source from the content-addressed store, hash-verified

48}
49
50function nextWeek(day: Day): string {
51 const weekday = weekdays[day];
52
53 switch (day) {
54 case 0:
55 case 3:
56 case 6:
57 return "'следната " + weekday + " вo' p";
58 case 1:
59 case 2:
60 case 4:
61 case 5:
62 return "'следниот " + weekday + " вo' p";
63 }
64}
65
66const formatRelativeLocale = {
67 lastWeek: <DateType extends Date>(

Callers 1

index.tsFile · 0.70

Calls

no outgoing calls

Tested by

no test coverage detected