diff options
author | jaubourg <j@ubourg.net> | 2012-10-16 10:10:17 -0400 |
---|---|---|
committer | jaubourg <j@ubourg.net> | 2012-10-16 10:10:17 -0400 |
commit | 605a38073e657d929eed06b3211baee1cd29c787 (patch) | |
tree | 4ef6a39f6dfcd326c2f1a6a91d7f0c892805a8e0 /grunt.js | |
parent | 6ba563887a572efc25e60623b5e1301864cff303 (diff) | |
download | jquery-605a38073e657d929eed06b3211baee1cd29c787.tar.gz jquery-605a38073e657d929eed06b3211baee1cd29c787.zip |
put "use strict" where it belongs so that this works for jshint 0.5.x up to 0.9.x
Diffstat (limited to 'grunt.js')
-rw-r--r-- | grunt.js | 2 |
1 files changed, 2 insertions, 0 deletions
@@ -12,6 +12,8 @@ var child_process = require("child_process"); module.exports = function( grunt ) { + "use strict"; + // readOptionalJSON // by Ben Alman // https://gist.github.com/2876125 |