MCPcopy Index your code
hub / github.com/formatjs/formatjs / Day

Function Day

packages/ecma262-abstract/DateOperations.ts:7–9  ·  view source on GitHub ↗
(t: number)

Source from the content-addressed store, hash-verified

5}
6
7export function Day(t: number): number {
8 return Math.floor(t / MS_PER_DAY)
9}
10
11export function WeekDay(t: number): number {
12 return mod(Day(t) + 4, 7)

Callers 2

WeekDayFunction · 0.85
DayWithinYearFunction · 0.85

Calls 1

floorMethod · 0.80

Tested by

no test coverage detected