mirror of
https://github.com/fosrl/pangolin.git
synced 2026-02-15 14:15:13 +00:00
8 lines
233 B
TypeScript
8 lines
233 B
TypeScript
export function getSevenDaysAgo() {
|
|
const today = new Date();
|
|
today.setHours(0, 0, 0, 0); // Set to midnight
|
|
const sevenDaysAgo = new Date(today);
|
|
sevenDaysAgo.setDate(today.getDate() - 7);
|
|
return sevenDaysAgo;
|
|
}
|