Files
supabase/apps/docs/components/Navigation/NavigationMenu/NavigationMenu.utils.ts
Terry Sutton eba225523a More keys
2022-12-21 17:19:08 -03:30

7 lines
218 B
TypeScript

// check if the link is allowed to be displayed
export function isFuncNotInLibraryOrVersion(id, type, allowedKeys) {
if (id && allowedKeys && !allowedKeys.includes(id) && type !== 'markdown') {
return true
}
}