From 1ebc55c72a1a17293bbf4ad86e0177a10a794750 Mon Sep 17 00:00:00 2001 From: Joris Date: Sun, 17 Sep 2023 12:23:47 +0200 Subject: Make app packageable --- library/client/lib/i18n.ts | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 library/client/lib/i18n.ts (limited to 'library/client/lib/i18n.ts') diff --git a/library/client/lib/i18n.ts b/library/client/lib/i18n.ts new file mode 100644 index 0000000..3716367 --- /dev/null +++ b/library/client/lib/i18n.ts @@ -0,0 +1,14 @@ +export function unit( + n: number, + singular: string, + plural: string, + f: (n: number, unit: string) => string = format +): string { + return n > 1 + ? f(n, plural) + : f(n, singular) +} + +function format(n: number, unit: string): string { + return `${n} ${unit}` +} -- cgit v1.2.3