UNPKG

sitemap-generator

Version:

Easily create XML sitemaps for your website.

9 lines (8 loc) 291 B
module.exports = () => { const now = new Date(); const year = now.getFullYear(); const month = now.getMonth() + 1 < 10 ? `0${now.getMonth() + 1}` : now.getMonth() + 1; const date = now.getDate() < 10 ? `0${now.getDate()}` : now.getDate(); return `${year}-${month}-${date}`; };