util.js 263 B

1234567
  1. // weixin miniprogram
  2. // @ts-ignore
  3. var isWx = (typeof wx === 'object') && (typeof wx.getSystemInfoSync === 'function');
  4. // ant miniprogram
  5. // @ts-ignore
  6. var isMy = (typeof my === 'object') && (typeof my.getSystemInfoSync === 'function');
  7. export { isWx, isMy, };