9 lines
122 B

var foo = (function () { 'use strict';
function foo () {
console.log( 'indented with tabs' );
}
return foo;
})();