result states

This commit is contained in:
2025-08-31 22:23:30 -04:00
parent 0ea16ead64
commit b433a26fc6
7 changed files with 82 additions and 20 deletions

View File

@@ -50,3 +50,5 @@ export const setDiff = <T>(
});
export const set = <T>(arr: T[]) => new Set<T>(arr);
export const invert = <E>(obs: Observable<boolean, E>) => obs.map((o) => !o);