dvc890's picture
[feat]add project files
41af422
raw
history blame contribute delete
197 Bytes
export function getCurrentDate() {
const date = new Date()
const day = date.getDate()
const month = date.getMonth() + 1
const year = date.getFullYear()
return `${year}-${month}-${day}`
}