all files / src/ isReactNative.js

100% Statements 3/3
75% Branches 3/4
100% Functions 0/0
100% Lines 2/2
1 2 3 4 5 6 7 8              
const isReactNative =
  typeof window !== 'undefined' &&
  window.navigator &&
  window.navigator.product &&
  window.navigator.product === 'ReactNative'
 
export default isReactNative