Skip to content

Instantly share code, notes, and snippets.

@DefectingCat
Created December 20, 2023 06:55
Show Gist options
  • Save DefectingCat/d7e1a24988a2de9f23ede5a23e6f38cb to your computer and use it in GitHub Desktop.
Save DefectingCat/d7e1a24988a2de9f23ede5a23e6f38cb to your computer and use it in GitHub Desktop.
WeChat and iOS WeChat regexp
export const isWeChat = () =>
/MicroMessenger/i.test(window.navigator.userAgent);
export const isWeChatSafari = navigator.userAgent.match(
/(?=iPhone|iPod)(?=.*(Safari|MicroMessenger))/i
);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment