lewisdale.dev/src/_data/today.js

7 lines
137 B
JavaScript
Raw Normal View History

2023-02-06 10:22:59 +00:00
const today = new Date();
module.exports = {
year: today.getFullYear(),
month: today.getMonth(),
day: today.getDate() + 1,
}