* Does our fallback best-guess model think this event signifies that * composition has begun? * * @param {string} topLevelType * @param {object} nativeEvent * @return {boolean}
(topLevelType, nativeEvent)
| 3365 | * @return {boolean} |
| 3366 | */ |
| 3367 | function isFallbackCompositionStart(topLevelType, nativeEvent) { |
| 3368 | return topLevelType === 'topKeyDown' && nativeEvent.keyCode === START_KEYCODE; |
| 3369 | } |
| 3370 | |
| 3371 | /** |
| 3372 | * Does our fallback mode think that this event is the end of composition? |
no outgoing calls
no test coverage detected