@aws-amplify/core
Version:
Core category of aws-amplify
14 lines (12 loc) • 488 B
JavaScript
// Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
// SPDX-License-Identifier: Apache-2.0
Object.defineProperty(exports, "__esModule", { value: true });
exports.reactNativeDetect = reactNativeDetect;
// Tested with react-native 0.17.7
function reactNativeDetect() {
return (typeof navigator !== 'undefined' &&
typeof navigator.product !== 'undefined' &&
navigator.product === 'ReactNative');
}
//# sourceMappingURL=ReactNative.js.map
;