UNPKG

antwar-rss-plugin

Version:
22 lines (20 loc) 414 B
"use strict"; 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;