Description
Is there an existing issue for this?
- I have searched the existing issues
Describe the issue
There's a logic mismatch in the NativeEventEmitter in react-native-web and in react-native
The nativeModule argument that's passed is not assigned to the object/class for all cases but only under the condition that the platform is iOS.
https://github.com/necolas/react-native-web/blob/master/packages/react-native-web/src/vendor/react-native/EventEmitter/NativeEventEmitter.js#L43-L51
While in react-native the logic is different:
https://github.com/facebook/react-native/blob/main/packages/react-native/Libraries/EventEmitter/NativeEventEmitter.js#L50-L79
Expected behavior
NativeEventEmitter should work the same as in react-native
Steps to reproduce
no particular steps
Test case
Additional comments
I think that overwriting NativeEventEmitter shouldn't be necessary at all or if there's no other way then it should closely follow the existing react-native logic