test-isc
Version:
An Ionic component similar to Ionic Select, that allows to search items, including async search, group, add, edit, delete items, and much more.
10 lines (7 loc) • 315 B
JavaScript
import { m as menuController } from './index-59323445.js';
// Given a menu, return whether or not the menu toggle should be visible
const updateVisibility = async (menu) => {
const menuEl = await menuController.get(menu);
return !!(menuEl && await menuEl.isActive());
};
export { updateVisibility as u };