h5-wechat.js 242 B

123456789101112
  1. // #ifdef H5
  2. export function runningInsideWeChat() {
  3. const ua = (window.navigator.userAgent || '').toLowerCase()
  4. return /micromessenger/i.test(ua)
  5. }
  6. // #endif
  7. // #ifndef H5
  8. export function runningInsideWeChat() {
  9. return false
  10. }
  11. // #endif