Created
June 25, 2021 03:19
-
-
Save hopeseekr/da32c503a58ede2e0b6f70ef2170d3ff to your computer and use it in GitHub Desktop.
Conditionally load non-minified JS if needed.
This file contains 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
<!DOCTYPE html> | |
<html lang="en"> | |
<head> | |
<script src="js/our.min.js"></script> | |
<!-- Conditionally load the non-minified JS if needed --> | |
<script> | |
(function() { | |
if (typeof SOME_VAR === 'undefined') { | |
document.write('<script src="js/our.js"><\/script>'); | |
} | |
})(); | |
</script> | |
</head> | |
</html> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment