es5-strictmode.js 139 B

1234567
  1. // strict mode
  2. // test by @kangax
  3. Modernizr.addTest('strictmode', function(){
  4. return (function(){ "use strict"; return !this; })();
  5. });