2 lines
120 B
JavaScript
2 lines
120 B
JavaScript
const tomorrow = () => new Date(new Date().getTime() + 86400000).toISOString().split('T')[0];
|
|
module.exports = tomorrow |