()
| 51 | const csign = null; |
| 52 | |
| 53 | function readCache() { |
| 54 | try { |
| 55 | if (!fs.existsSync(TOKEN_CACHE_FILE)) return {}; |
| 56 | return JSON.parse(fs.readFileSync(TOKEN_CACHE_FILE, "utf8")) || {}; |
| 57 | } catch { |
| 58 | return {}; |
| 59 | } |
| 60 | } |
| 61 | |
| 62 | function writeCache(cache) { |
| 63 | try { |
no outgoing calls
no test coverage detected