Create normal and day-equidistant commit date arrays

This commit is contained in:
Joscha 2023-10-24 13:26:34 +02:00
parent b8c0a2c82a
commit 6754b48e7d
2 changed files with 44 additions and 1 deletions

View file

@ -9,3 +9,5 @@ export function el(name: string, attributes: { [key: string]: string; }, ...chil
element.append(...children);
return element;
}
export const SECONDS_PER_DAY = 24 * 60 * 60;