UNPKG

l7hammerjs

Version:

A javascript library for multi-touch gestures

6 lines (5 loc) 376 B
// 判断支付宝小程序环境 export const isMiniAli = typeof my !== 'undefined' && !!my && typeof my.showToast === 'function'; // 判断微信小程序环境 export const isWeChatMiniProgram = typeof wx !== 'undefined' && wx !== null && (typeof wx.request !== 'undefined' || typeof wx.miniProgram !== 'undefined'); export const isMini = isMiniAli || isWeChatMiniProgram;