/** * Output the given `str` to _stdout_. */ exports.write = function(str) { process.stdout.write(str); };