diff --git a/src/node.js b/src/node.js index 82ad356bfcf..f24a92ee22b 100644 --- a/src/node.js +++ b/src/node.js @@ -278,6 +278,7 @@ process.__defineGetter__('stdout', function() { if (stdout) return stdout; stdout = createWritableStdioStream(1); + stdout.end = stdout.destroy = stdout.destroySoon = function() { }; return stdout; });