优化json解析。
parent
db7b0f98c2
commit
3ae6282870
|
@ -475,6 +475,10 @@ function _getConfig () {
|
|||
return {}
|
||||
}
|
||||
|
||||
if (!fs.existsSync(configFilePath)) {
|
||||
return {}
|
||||
}
|
||||
|
||||
return jsonApi.parse(fs.readFileSync(configFilePath))
|
||||
}
|
||||
|
||||
|
|
|
@ -6,6 +6,9 @@ if (JSON5.default) {
|
|||
|
||||
module.exports = {
|
||||
parse (str) {
|
||||
if (str == null || str.length < 2) {
|
||||
return {}
|
||||
}
|
||||
return JSON5.parse(str)
|
||||
},
|
||||
stringify (obj) {
|
||||
|
|
Loading…
Reference in New Issue