2
0
Files
cal/calcom/packages/lib/isKeyInObject.ts

2 lines
95 B
TypeScript
Raw Normal View History

2024-08-09 00:39:27 +02:00
export const isKeyInObject = <T extends object>(k: PropertyKey, o: T): k is keyof T => k in o;