/
githubmirror
/
fullPage.js
Обзор
Документация
Войти
/
githubmirror
/
fullPage.js
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
src/js/callbacks/nullOrSection.js
12 строк
324 B
Alvaro Trigo López
- Minor changes
28 мар 2022, 18:38
28 мар 2022, 18:38
6ff0cb6
Код
Авторство
О чём код?
import { Section } from "../common/item.js"; import { SectionPanel } from "../stateUpdates.js"; /** * Makes sure to only create a Panel object if the element exist */ export function nullOrSection(el){ if(el && !el.item){ return new Section(new SectionPanel(el)); } return el ? new Section(el) : null; }