summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRyan Dahl <ry@tinyclouds.org>2010-10-09 12:48:22 -0700
committerRyan Dahl <ry@tinyclouds.org>2010-10-09 12:48:22 -0700
commitf23eb282c01723b94948d6c8a6ca9a135ac69764 (patch)
treedece2c94fe42fda1dbf6540fe0c2e0f511bb6c25
parent783f5019b0fe03cb03c494f7cc5d21d01e03b723 (diff)
downloadnode-new-f23eb282c01723b94948d6c8a6ca9a135ac69764.tar.gz
Fix style
-rw-r--r--lib/child_process.js12
-rw-r--r--lib/sys.js12
2 files changed, 8 insertions, 16 deletions
diff --git a/lib/child_process.js b/lib/child_process.js
index af59905966..81cd1f67f1 100644
--- a/lib/child_process.js
+++ b/lib/child_process.js
@@ -177,8 +177,7 @@ ChildProcess.prototype.spawn = function (path, args, options, customFds) {
cwd = "";
env = options || process.env;
customFds = customFds || [-1, -1, -1];
- }
- else {
+ } else {
// Recommended API: (path, args, options)
cwd = options.cwd || "";
env = options.env || process.env;
@@ -198,8 +197,7 @@ ChildProcess.prototype.spawn = function (path, args, options, customFds) {
this.stdin.open(fds[0]);
this.stdin.writable = true;
this.stdin.readable = false;
- }
- else {
+ } else {
this.stdin = null;
}
@@ -208,8 +206,7 @@ ChildProcess.prototype.spawn = function (path, args, options, customFds) {
this.stdout.writable = false;
this.stdout.readable = true;
this.stdout.resume();
- }
- else {
+ } else {
this.stdout = null;
}
@@ -218,8 +215,7 @@ ChildProcess.prototype.spawn = function (path, args, options, customFds) {
this.stderr.writable = false;
this.stderr.readable = true;
this.stderr.resume();
- }
- else {
+ } else {
this.stderr = null;
}
};
diff --git a/lib/sys.js b/lib/sys.js
index 4da1c057f2..4ffa1ea73f 100644
--- a/lib/sys.js
+++ b/lib/sys.js
@@ -181,8 +181,7 @@ exports.inspect = function (obj, showHidden, depth, colors) {
if (seen.indexOf(value[key]) < 0) {
if ( recurseTimes === null) {
str = format(value[key]);
- }
- else {
+ } else {
str = format(value[key], recurseTimes - 1);
}
if (str.indexOf('\n') > -1) {
@@ -190,8 +189,7 @@ exports.inspect = function (obj, showHidden, depth, colors) {
str = str.split('\n').map(function(line) {
return ' ' + line;
}).join('\n').substr(2);
- }
- else {
+ } else {
str = '\n' + str.split('\n').map(function(line) {
return ' ' + line;
}).join('\n');
@@ -209,8 +207,7 @@ exports.inspect = function (obj, showHidden, depth, colors) {
if (name.match(/^"([a-zA-Z_][a-zA-Z_0-9]*)"$/)) {
name = name.substr(1, name.length-2);
name = stylize(name, "name");
- }
- else {
+ } else {
name = name.replace(/'/g, "\\'")
.replace(/\\"/g, '"')
.replace(/(^"|"$)/g, "'");
@@ -238,8 +235,7 @@ exports.inspect = function (obj, showHidden, depth, colors) {
+ ' '
+ braces[1]
;
- }
- else {
+ } else {
output = braces[0] + base + ' ' + output.join(', ') + ' ' + braces[1];
}