7 lines
137 B
JavaScript
7 lines
137 B
JavaScript
|
const today = new Date();
|
||
|
|
||
|
module.exports = {
|
||
|
year: today.getFullYear(),
|
||
|
month: today.getMonth(),
|
||
|
day: today.getDate() + 1,
|
||
|
}
|