machineuser
Sync widgets demo
94753b6
raw
history blame
No virus
112 Bytes
export function typedInclude<V, T extends V>(arr: readonly T[], v: V): v is T {
return arr.includes(v as T);
}