Files
NotionNext/lib/formatDate.js
tangly1024 dfc0f645d4 Code🤣
2021-09-27 09:33:21 +08:00

9 lines
341 B
JavaScript

export default function formatDate(date, local) {
const d = new Date(date)
const options = { year: 'numeric', month: 'short', day: 'numeric' }
const res = d.toLocaleDateString(local, options)
return local.slice(0, 2).toLowerCase() === 'zh'
? res.replace('年', ' 年 ').replace('月', ' 月 ').replace('日', ' 日')
: res
}