chore: move ui utils to utils/ui

This commit is contained in:
terraputix
2026-02-15 15:29:11 +01:00
parent 2a8a8b9746
commit 3955fe5686
34 changed files with 42 additions and 40 deletions
+9
View File
@@ -0,0 +1,9 @@
export * from './ui.ts';
export * from './meteo.ts';
export const pad = (n: string | number) => {
if (n === null || n === undefined) {
return '';
}
return ('0' + n).slice(-2);
};