mirror of
https://github.com/omnivore-app/omnivore.git
synced 2026-03-11 08:54:26 +00:00
11 lines
252 B
TypeScript
11 lines
252 B
TypeScript
import { UserBasicData } from './networking/queries/useGetViewerQuery'
|
|
|
|
export const userHasFeature = (
|
|
user: UserBasicData | undefined,
|
|
feature: string
|
|
): boolean => {
|
|
if (!user) {
|
|
return false
|
|
}
|
|
return user.features.includes(feature)
|
|
}
|