Add kind 30064 named communities

This commit is contained in:
Jon Staab
2024-07-22 10:11:22 -07:00
parent f6b10ee7b6
commit 69effe4f41
7 changed files with 10 additions and 9 deletions
+1 -1
View File
@@ -109,7 +109,7 @@ export const difference = <T>(a: T[], b: T[]) => {
return a.filter(x => !s.has(x))
}
export const remove = <T>(a: T, b: T[]) => b.filter(x => x !== a)
export const remove = <T>(a: T, xs: T[]) => xs.filter(x => x !== a)
export const without = <T>(a: T[], b: T[]) => b.filter(x => !a.includes(x))