Add simple support for SGB Oława

This commit is contained in:
2025-05-05 13:41:39 +02:00
parent ea58180e69
commit 47892f8262
7 changed files with 124 additions and 8 deletions

View File

@@ -64,3 +64,7 @@ export function parseAmount(input?: string): number|undefined {
return v;
}
export function deduplicateSpaces(input: string): string {
return input.replaceAll(/\s+/, " ");
}