(hatStyle: HatStyleName, character: string)
| 59 | } |
| 60 | |
| 61 | getToken(hatStyle: HatStyleName, character: string) { |
| 62 | this.checkExpired(); |
| 63 | return this.map[HatTokenMap.getKey(hatStyle, character)]; |
| 64 | } |
| 65 | |
| 66 | clear() { |
| 67 | this.map = {}; |
nothing calls this directly
no test coverage detected