Hugging Face
Models
Datasets
Spaces
Community
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
y001j
/
ChatGLM
like
0
Configuration error
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
af9251e
ChatGLM
/
views
/
src
/
utils
/
functions
/
index.ts
y001j
Upload 305 files
af9251e
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}
`
}