()
| 351 | } |
| 352 | |
| 353 | removeCachedToken() { |
| 354 | const cache = readCache(); |
| 355 | if (cache[this.account]) { |
| 356 | delete cache[this.account]; |
| 357 | writeCache(cache); |
| 358 | } |
| 359 | this.token = ""; |
| 360 | this.lmid = ""; |
| 361 | this.expire = 0; |
| 362 | } |
| 363 | |
| 364 | miniHeaders(data = null, member = false) { |
| 365 | const headers = { |
no test coverage detected