()
| 33 | } |
| 34 | |
| 35 | get invalid() { |
| 36 | if (this.status === Status.FAILED) |
| 37 | return true; |
| 38 | if (this.expiry !== undefined && (new Date().getTime()) > this.expiry) |
| 39 | return true; |
| 40 | return false; |
| 41 | } |
| 42 | } |
| 43 | |
| 44 | export class UserCache { |
nothing calls this directly
no outgoing calls
no test coverage detected