(val)
| 4644 | // KEYMAP DISPATCH |
| 4645 | |
| 4646 | function getKeyMap(val) { |
| 4647 | if (typeof val == "string") return keyMap[val]; |
| 4648 | else return val; |
| 4649 | } |
| 4650 | |
| 4651 | // Given an array of keymaps and a key name, call handle on any |
| 4652 | // bindings found, until that returns a truthy value, at which point |
no outgoing calls
no test coverage detected