diff --git a/lib/path.js b/lib/path.js index 88c2df8cd71..98155de2c25 100644 --- a/lib/path.js +++ b/lib/path.js @@ -450,4 +450,4 @@ if (isWindows) { exports._makeLong = function(path) { return path; }; -} \ No newline at end of file +} diff --git a/lib/timers.js b/lib/timers.js index d281ea40615..48353c04eff 100644 --- a/lib/timers.js +++ b/lib/timers.js @@ -308,7 +308,7 @@ function processImmediate() { if (immediate.domain) immediate.domain.exit(); } -}; +} exports.setImmediate = function(callback) { diff --git a/src/node.js b/src/node.js index 3811bd32ed9..af6ab34dcb6 100644 --- a/src/node.js +++ b/src/node.js @@ -580,13 +580,13 @@ wrap.unref(); - wrap.onsignal = function () { process.emit(type); }; + wrap.onsignal = function() { process.emit(type); }; var signum = startup.lazyConstants()[type]; var r = wrap.start(signum); if (r) { wrap.close(); - throw errnoException(errno, "uv_signal_start"); + throw errnoException(errno, 'uv_signal_start'); } signalWraps[type] = wrap;