Context menu, logs in DevTools, export, tweaks

This commit is contained in:
Gregory Schier
2023-11-09 09:28:01 -08:00
parent aeda72f13e
commit 9ebb3ef532
20 changed files with 593 additions and 157 deletions

View File

@@ -4,3 +4,7 @@ export function pluralize(word: string, count: number): string {
}
return `${word}s`;
}
export function count(word: string, count: number): string {
return `${count} ${pluralize(word, count)}`;
}