Remove process.mixin from repl
authorisaacs <i@izs.me>
Mon, 8 Mar 2010 23:07:26 +0000 (15:07 -0800)
committerRyan Dahl <ry@tinyclouds.org>
Tue, 9 Mar 2010 17:04:45 +0000 (09:04 -0800)
bin/node-repl

index 82eb1bc..9dfdd0a 100755 (executable)
@@ -1,6 +1,7 @@
 #!/usr/bin/env node
 
-process.mixin(require('sys'));
+puts = require("sys").puts;
+
 puts("Welcome to the Node.js REPL.");
 puts("Enter ECMAScript at the prompt.");
 puts("Tip 1: Use 'rlwrap node-repl' for a better interface");