improve .env parsing

This commit is contained in:
Paul Coral
2025-08-01 23:18:04 +02:00
parent c3881d7ff7
commit 6050d9d3a3
29 changed files with 455 additions and 98 deletions

View File

@@ -0,0 +1,3 @@
export function isDefined<T>(obj: T): obj is NonNullable<T> {
return obj !== undefined && obj !== null;
}