* Checks if any of the given keys are currently held. * * @param keys - Array of key names to check * @returns True if any of the keys are currently held
(keys: Array<string>)
| 216 | * @returns True if any of the keys are currently held |
| 217 | */ |
| 218 | isAnyKeyHeld(keys: Array<string>): boolean { |
| 219 | return keys.some((key) => this.isKeyHeld(key)) |
| 220 | } |
| 221 | |
| 222 | /** |
| 223 | * Checks if all of the given keys are currently held. |
no test coverage detected