podcast
Version:
Podcast RSS feed generator. A really simple API to add Podcast-RSS feeds to any project.
23 lines (22 loc) • 746 B
JavaScript
export const buildITunesCategories = (categories) => {
const arr = [];
if (Array.isArray(categories)) {
categories.forEach((category) => {
if (category.subcats) {
const elements = [
{ _attr: { text: category.text } },
];
const cats = buildITunesCategories(category.subcats);
elements.push(...cats);
// cats.forEach((cat) => {
// elements.push(cat);
// });
arr.push({ "itunes:category": elements });
}
else {
arr.push({ "itunes:category": { _attr: { text: category.text } } });
}
});
}
return arr;
};