Skip to content

Instantly share code, notes, and snippets.

@Mosquid
Last active November 11, 2020 19:11
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 Mosquid/5f6b95f90264f71f9f6bd9d75afc16eb to your computer and use it in GitHub Desktop.
Save Mosquid/5f6b95f90264f71f9f6bd9d75afc16eb to your computer and use it in GitHub Desktop.
isProductPage gearbest
{
isProductPage: () => {
try {
const [pageData] = window.dataLayer
return pageData.PAGE === "goods" ? true : false
} catch (err) {
console.error(err)
return false
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment