UNPKG

@11ty/eleventy-plugin-rss

Version:

Generate an Atom, RSS, or JSON feed with Eleventy.

8 lines (6 loc) 230 B
module.exports = function(collection, emptyFallbackDate) { if( !collection || !collection.length ) { return emptyFallbackDate || new Date(); } return new Date(Math.max(...collection.map(item => {return item.date}))); }