ekoeryanto / vuepress-plugin-sitemap

Sitemap generator plugin for vuepress.
MIT License
93 stars 19 forks source link

fix date convert error #36

Open JoeyBling opened 3 years ago

JoeyBling commented 3 years ago

On Windows: use the function toLocaleString("zh-CN") to output special symbols, resulting in date conversion failure. for e.g.

let nowDate = new Date().toLocaleString("zh-CN")
console.log(nowDate)
// output: 2020-7-23 7:16:11 ├F10: AM┤
// if convert to ISOString An exception will occur
console.log(new Date(nowDate).toISOString())

node version:v12.18.2 npm version:6.14.5

I tried to install the global internationalization support dependency,but it didn't work

npm install -g full-icu

ekoeryanto commented 3 years ago

can't it fixed just by dateFormater option?

JoeyBling commented 3 years ago

that's ok, but I don't want to rewrite it Because I didn't cause the problem, and I don't know what happened