What is the best way to check if a given object of any kind is a SyntheticEvent?
Currently, I'm peering into the internals:
if (obj.nativeEvent ) {
// 100% sure...with this version of React
}
What is a more idiomatic (or at least future-proof) way of doing this?