Step( function readSelf() {
fs.readFile(__filename, this); },
function ponerMayus(err, text) {
if (err) throw err;
return text.toUpperCase(); },
function Mostrar(err, nuevoTexto) {
if (err) throw err;
console.log(nuevoTexto); } );
Gracias por toda la ayuda.