jsdoc/test/fixtures/innerscope.js
Jeff Williams 48e6c392d5 huge whitespace cleanup
- remove all trailing whitespace
- for consistency, replace all tabs with spaces
2014-03-03 07:43:01 -08:00

18 lines
272 B
JavaScript

/** @constructor */
function Message(to) {
var headers = {},
response;
/** document me */
headers.to = to;
(function() {
/** document me */
response.code = '200';
/** document me */
headers.from = '';
})()
}