agent.js 170 B

1234567
  1. function checkMac(){
  2. if (/(iPhone|iPad|iPod|iOS|macintosh|mac os x)/i.test(navigator.userAgent)) {
  3. return true
  4. }
  5. }
  6. export const wx = checkMac() ? wx : jWeixin;