/
githubmirror
/
ionic-framework
Обзор
Документация
Войти
/
githubmirror
/
ionic-framework
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
main
core/src/components/menu-toggle/menu-toggle-util.ts
7 строк
303 B
Maria Hutt
refactor(many): use utils import (#27160)
12 апр 2023, 23:25
Не верифицирован
12 апр 2023, 23:25
0a0345a
Код
Авторство
О чём код?
import { menuController } from '@utils/menu-controller'; // Given a menu, return whether or not the menu toggle should be visible export const updateVisibility = async (menu: string | undefined) => { const menuEl = await menuController.get(menu); return !!(menuEl && (await menuEl.isActive())); };