Skip to content

Instantly share code, notes, and snippets.

@AnthonyDS
Last active July 8, 2023 03:42
Show Gist options
  • Save AnthonyDS/db8d124bde48bd698d1b656fed7b893b to your computer and use it in GitHub Desktop.
Save AnthonyDS/db8d124bde48bd698d1b656fed7b893b to your computer and use it in GitHub Desktop.
(function () {
Object.defineProperties(window, {
'isMobile': {
value: (/Android|iPhone|iPad|iPod|webOS|BlackBerry|IEMobile|Opera Mini/i.test(navigator.userAgent)),
writable: false,
},
'isiOS': {
value: (/iPhone|iPad|iPod/i.test(navigator.userAgent)),
writable: false,
}
});
})();
console.log(window.isMobile);
console.log(window.isiOS);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment