This commit is contained in:
Ryan Dahl 2010-10-09 12:48:22 -07:00
Родитель 783f5019b0
Коммит f23eb282c0
2 изменённых файлов: 8 добавлений и 16 удалений

Просмотреть файл

@ -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;
}
};

Просмотреть файл

@ -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];
}