imseldrith's picture
Upload with huggingface_hub (#1)
3d83f0d
raw
history blame
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}`
}