export function roleExists()

in package/src/rbac.ts [93:98]


export function roleExists(roleId: string): boolean {
    if (roles.has(roleId)) {
        return true;
    }
    return false;
}