Hugging Face
Models
Datasets
Spaces
Posts
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
leurez
/
moss
like
4
Runtime error
App
Files
Files
Community
2
Fetching metadata from the HF Docker repository...
ac919cc
moss
/
src
/
utils
/
functions
/
index.ts
xianqiu
change the port
61ede3b
almost 2 years ago
raw
Copy download link
history
blame
Safe
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}
`
}