async function get_feeds()

in archive/poster.js [26:36]


async function get_feeds(url) {
  const feed = await parser.parseURL(url);
  let output = [];
  for (const item of feed.items) {
    output.push({
      title: item.title,
      link: item.link,
    });
  }
  return output;
}