* Does our fallback best-guess model think this event signifies that * composition has begun? * * @param {string} topLevelType * @param {object} nativeEvent * @return {boolean}
(topLevelType, nativeEvent)
| 8838 | |
| 8839 | |
| 8840 | function isFallbackCompositionStart(topLevelType, nativeEvent) { |
| 8841 | return topLevelType === TOP_KEY_DOWN && nativeEvent.keyCode === START_KEYCODE; |
| 8842 | } |
| 8843 | /** |
| 8844 | * Does our fallback mode think that this event is the end of composition? |
| 8845 | * |
no outgoing calls
no test coverage detected