Traducir funcion a coffescript
AUTOR PREGUNTA #1
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.
-
¿Tienes la misma pregunta? Yo también
Esto también te interesa!
PREGUNTAS SIMILARES
#2
Step (readSelf = -> fs.readFile __filename, @ ), (ponerMayus = (err, text) -> throw err if err? text.toUpperCase() ), Mostrar= (err, newText) -> throw err if err? console.log nuevoTexto