This repository has been archived on 2024-02-08. You can view files and clone it, but cannot push or open issues or pull requests.
frontend/src/helpers/time/getNextWeekDate.ts
kolaente 84f177c80e
Some checks failed
continuous-integration/drone/pr Build is failing
feat: reduce dependency on router and move everything to route props instead
2022-02-06 20:11:13 +01:00

4 lines
111 B
TypeScript

export function getNextWeekDate(): Date {
return new Date((new Date()).getTime() + 7 * 24 * 60 * 60 * 1000)
}