(cache)
| 49 | } |
| 50 | |
| 51 | function writeCache(cache) { |
| 52 | try { |
| 53 | fs.writeFileSync(CACHE_FILE, JSON.stringify(cache, null, 2), "utf8"); |
| 54 | } catch (e) { |
| 55 | $.log(`缓存写入失败: ${e.message || e}`); |
| 56 | } |
| 57 | } |
| 58 | |
| 59 | function short(value, max = 600) { |
| 60 | if (value === undefined || value === null) return ""; |
no test coverage detected