Having trouble getting the following to pass jslint/jshint
/*jshint strict: true */ var myModule = (function() { \"use strict\"; var privVar = true,
Unfortunately, this is the intended error for this setup since jslint/jshint don't know the function declared in global context is to be later used as an object method.