UNPKG

@ragnaroksj/sitemap-generator

Version:

Easily create XML sitemaps for your website with url-parse 1.5.10 based on sitemap generator

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}`; };