Skip to content

Instantly share code, notes, and snippets.

@sounisi5011
Created January 28, 2016 19:53
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 sounisi5011/f12992610d9c7171fe91 to your computer and use it in GitHub Desktop.
Save sounisi5011/f12992610d9c7171fe91 to your computer and use it in GitHub Desktop.
detect if strict mode is supported / strictモードに対応しているか検出
/**
* @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