Created
January 28, 2016 19:53
-
-
Save sounisi5011/f12992610d9c7171fe91 to your computer and use it in GitHub Desktop.
detect if strict mode is supported / strictモードに対応しているか検出
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
/** | |
* @see http://stackoverflow.com/questions/3277182#3277192 | |
*/ | |
var isStrictModeSupported = (function() { 'use strict'; return !this; }()); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment