summaryrefslogtreecommitdiff
path: root/source/bower_components/modernizr/feature-detects/es5-strictmode.js
blob: bffbe95655fcafdbd9286813e98fcfcdea089a20 (plain)
1
2
3
4
5
6
7
// strict mode

// test by @kangax

Modernizr.addTest('strictmode', function(){
	return (function(){ "use strict"; return !this; })(); 
});