Simplify REPL
This commit is contained in:
parent
bbbcd1fee0
commit
42eb5a6898
@ -48,7 +48,7 @@ function REPLServer(prompt, stream) {
|
||||
self.buffered_cmd = '';
|
||||
|
||||
self.stream = stream || process.openStdin();
|
||||
self.prompt = prompt || "node> ";
|
||||
self.prompt = prompt || "> ";
|
||||
|
||||
var rli = self.rli = rl.createInterface(self.stream, function (text) {
|
||||
return self.complete(text);
|
||||
|
@ -741,9 +741,7 @@ if (process.argv[1]) {
|
||||
});
|
||||
} else {
|
||||
// No arguments, run the repl
|
||||
var repl = requireNative('repl');
|
||||
console.log("Type '.help' for options.");
|
||||
repl.start();
|
||||
requireNative('repl').start();
|
||||
}
|
||||
|
||||
// All our arguments are loaded. We've evaluated all of the scripts. We
|
||||
|
Loading…
x
Reference in New Issue
Block a user