@ionic/core
Version:
Base components for Ionic
10 lines (9 loc) • 358 B
JavaScript
/*!
* (C) Ionic http://ionicframework.com - MIT License
*/
import { menuController } from "../../utils/menu-controller/index";
// Given a menu, return whether or not the menu toggle should be visible
export const updateVisibility = async (menu) => {
const menuEl = await menuController.get(menu);
return !!(menuEl && (await menuEl.isActive()));
};