Some checks failed
Automated Container Build / build-and-push (push) Failing after 12s
6 lines
191 B
JavaScript
6 lines
191 B
JavaScript
const isReactNative = () =>
|
|
typeof navigator !== 'undefined' &&
|
|
typeof navigator.product === 'string' &&
|
|
navigator.product.toLowerCase() === 'reactnative'
|
|
|
|
export default isReactNative
|