优化json解析。

pull/437/head
王良 2025-01-16 17:17:06 +08:00
parent db7b0f98c2
commit 3ae6282870
2 changed files with 7 additions and 0 deletions

View File

@ -475,6 +475,10 @@ function _getConfig () {
return {}
}
if (!fs.existsSync(configFilePath)) {
return {}
}
return jsonApi.parse(fs.readFileSync(configFilePath))
}

View File

@ -6,6 +6,9 @@ if (JSON5.default) {
module.exports = {
parse (str) {
if (str == null || str.length < 2) {
return {}
}
return JSON5.parse(str)
},
stringify (obj) {