Created
September 27, 2023 09:51
-
-
Save mininaim/27765300d3d416c93d07665cc54e9b57 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| function hasMetaTag(name) { | |
| return document.querySelector(`meta[name="${name}"]`) !== null; | |
| } | |
| const metaExists = hasMetaTag('LABLEB_SEARCH_PROJECT'); | |
| if (metaExists) { | |
| // | |
| } else { | |
| // | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment