UNPKG

antwar-rss-plugin

Version:
21 lines (19 loc) 402 B
const generate = require("./generate"); // Antwar wrapper module.exports = function({ baseUrl, sections, get }) { return { extra(pages, config) { return { "atom.xml": generate({ baseUrl, sections, updated: new Date().toString(), pages, config, get, }), }; }, }; }; module.exports.generate = generate;