UNPKG

nodemod

Version:

A collection of node modules for The Really Project

6 lines 271 B
import { toValidWeekday } from './to-valid-weekday'; export function normalizeWeekday(weekDay, firstDayOfWeek, showWeekNumber) { const x = toValidWeekday(weekDay - firstDayOfWeek); return showWeekNumber ? 1 + x : x; } //# sourceMappingURL=normalize-weekday.js.map