(hatStyle: HatStyleName, character: string)
| 51 | } |
| 52 | |
| 53 | static getKey(hatStyle: HatStyleName, character: string) { |
| 54 | return `${hatStyle}.${character}`; |
| 55 | } |
| 56 | |
| 57 | static splitKey(key: string) { |
| 58 | let [hatStyle, character] = key.split("."); |
no outgoing calls
no test coverage detected