Last active
August 29, 2015 14:02
-
-
Save fabiomaggio/fcd56557936440f30412 to your computer and use it in GitHub Desktop.
Simple feature detection for modern browsers
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
// HTML5 browser | |
if('querySelector' in document | |
&& 'localStorage' in window | |
&& 'addEventListener' in window | |
&& Array.prototype.forEach) { | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment