* Does our fallback best-guess model think this event signifies that * composition has begun? * * @param {string} topLevelType * @param {object} nativeEvent * @return {boolean}
(topLevelType, nativeEvent)
| 155 | * @return {boolean} |
| 156 | */ |
| 157 | function isFallbackCompositionStart(topLevelType, nativeEvent) { |
| 158 | return topLevelType === topLevelTypes.topKeyDown && nativeEvent.keyCode === START_KEYCODE; |
| 159 | } |
| 160 | |
| 161 | /** |
| 162 | * Does our fallback mode think that this event is the end of composition? |
no outgoing calls
no test coverage detected
searching dependent graphs…