/
githubmirror
/
quill
Обзор
Документация
Войти
/
githubmirror
/
quill
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
main
packages/website/src/utils/flattenData.js
17 строк
315 B
Zihua Li
Migrate to Next.js from Gatsby
19 янв 2024, 14:23
19 янв 2024, 14:23
ca8dbab
Код
Авторство
О чём код?
function flattenData(root) { const data = []; const flatten = (i) => { i.forEach((child) => { if (child.url.includes('#')) return; data.push(child); if (child.children) { flatten(child.children); } }); }; flatten(root); return data; } export default flattenData;