diff --git a/lib/http.js b/lib/http.js index 3c8b60944c..3ebca09439 100644 --- a/lib/http.js +++ b/lib/http.js @@ -707,7 +707,7 @@ OutgoingMessage.prototype._renderHeaders = function() { Object.defineProperty(OutgoingMessage.prototype, 'headersSent', { configurable: true, enumerable: true, - get: function () { return !!this._header; } + get: function() { return !!this._header; } }); diff --git a/lib/module.js b/lib/module.js index c3b0ea18ea..ed25f92d11 100644 --- a/lib/module.js +++ b/lib/module.js @@ -497,7 +497,7 @@ Module.runMain = function() { Module._load(process.argv[1], null, true); }; -Module._initPaths = function () { +Module._initPaths = function() { var isWindows = process.platform === 'win32'; if (isWindows) { diff --git a/lib/util.js b/lib/util.js index 81a76a8778..c0bd4c1a1b 100644 --- a/lib/util.js +++ b/lib/util.js @@ -112,7 +112,8 @@ var error = exports.error = function(x) { * @param {Object} obj The object to print out. * @param {Object} opts Optional options object that alters the output. */ -function inspect(obj, opts/* legacy: showHidden, depth, colors*/) { +/* legacy: obj, showHidden, depth, colors*/ +function inspect(obj, opts) { // default options var ctx = { seen: [],