weex-nuke
Version:
基于 Rax 、Weex 的高性能组件体系 ~~
6 lines (5 loc) • 435 B
JavaScript
// https://www.w3.org/TR/html5/webappapis.html#dom-navigator-appcodename
export const isWeb = typeof navigator === 'object' && (navigator.appCodeName === 'Mozilla' || navigator.product === 'Gecko');
export const isNode = typeof process !== 'undefined' && !!(process.versions && process.versions.node);
export const isWeex = typeof callNative === 'function';
export const isReactNative = typeof __fbBatchedBridgeConfig !== 'undefined';