feat: add relay composables

This commit is contained in:
2026-05-14 22:41:11 +02:00
parent 03e53aa389
commit 970a38153e
9 changed files with 136 additions and 10 deletions
+2
View File
@@ -0,0 +1,2 @@
export const isNil = (value: unknown | null | undefined): value is null | undefined =>
value === null || value === undefined;