2010-10-11 23:04:09 +02:00
|
|
|
var util = require("util");
|
2010-01-15 21:46:08 +01:00
|
|
|
|
2010-10-11 23:04:09 +02:00
|
|
|
var sysWarning;
|
|
|
|
if (!sysWarning) {
|
|
|
|
sysWarning = "The 'sys' module is now called 'util'. It should have a similar interface.";
|
2010-11-03 05:20:28 +01:00
|
|
|
// Uncomment in 2011
|
|
|
|
//util.error(sysWarning);
|
2010-05-10 01:35:15 +02:00
|
|
|
}
|
2009-10-13 13:26:00 +02:00
|
|
|
|
2010-10-11 23:04:09 +02:00
|
|
|
exports.print = util.print;
|
|
|
|
exports.puts = util.puts;
|
|
|
|
exports.debug = util.debug;
|
|
|
|
exports.error = util.error;
|
|
|
|
exports.inspect = util.inspect;
|
|
|
|
exports.p = util.p;
|
|
|
|
exports.log = util.log;
|
|
|
|
exports.exec = util.exec;
|
|
|
|
exports.pump = util.pump;
|
2010-11-03 05:20:28 +01:00
|
|
|
exports.inherits = util.inherits;
|