UNPKG

@11ty/eleventy-plugin-rss

Version:

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

12 lines (9 loc) 252 B
// Atom uses RFC 3339 dates // https://tools.ietf.org/html/rfc3339#section-5.8 module.exports = function(dateObj) { let s = dateObj.toISOString(); // remove milliseconds let split = s.split("."); split.pop(); return split.join("") + "Z"; }