Skip to content

Instantly share code, notes, and snippets.

@itaditya
Created October 5, 2021 13:53
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save itaditya/6e1986773d18bdd35cae5963b587f71f to your computer and use it in GitHub Desktop.
Save itaditya/6e1986773d18bdd35cae5963b587f71f to your computer and use it in GitHub Desktop.
Find if OS is mac or not.
function getOs() {
const MOD = /Mac|iPod|iPhone|iPad/.test(navigator.platform) ? 'mac' : 'win';
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment