UNPKG

364 BJavaScriptView Raw
1/*!
2 * (C) Ionic http://ionicframework.com - MIT License
3 */
4import { m as menuController } from './index5.js';
5
6// Given a menu, return whether or not the menu toggle should be visible
7const updateVisibility = async (menu) => {
8 const menuEl = await menuController.get(menu);
9 return !!(menuEl && await menuEl.isActive());
10};
11
12export { updateVisibility as u };