mirror of
https://github.com/supabase/supabase.git
synced 2026-05-24 04:00:47 +08:00
7 lines
218 B
TypeScript
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
|
|
}
|
|
}
|