(cache)
| 105 | } |
| 106 | |
| 107 | function writeCache(cache) { |
| 108 | try { |
| 109 | fs.writeFileSync(TOKEN_CACHE_FILE, JSON.stringify(cache, null, 2), "utf8"); |
| 110 | } catch (e) { |
| 111 | $.log(`写入token缓存失败: ${e.message || e}`); |
| 112 | } |
| 113 | } |
| 114 | |
| 115 | function shortValue(value = "") { |
| 116 | const text = String(value || ""); |
no test coverage detected