* Adds basic feature flag model * Create router.ts * WIP * WIP * WIP * WIP * Emails kill switch * Adds missing migrations * Type fix * Cleanup * Revert * Cleanup * Fixes migration * Update packages/features/flags/server/utils.ts Co-authored-by: sean-brydon <[email protected]> --------- Co-authored-by: Alex van Andel <[email protected]> Co-authored-by: Peer Richelsen <[email protected]> Co-authored-by: sean-brydon <[email protected]>
2 lines
95 B
TypeScript
2 lines
95 B
TypeScript
export const isKeyInObject = <T extends object>(k: PropertyKey, o: T): k is keyof T => k in o;
|