Cargando

Traducir funcion a coffescript




Pulsa corazón para recibir avisos de nuevas Respuestas

  AUTOR PREGUNTA

Publicado 02 julio 2014 - 18:30
De qué forma puedo traducir la siguiente función en javascript a coffescript:

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
  • Volver arriba

 

Publicado 02 julio 2014 - 23:03
El equivalente sería el siguiente:

Step (readSelf = -> fs.readFile __filename, @ ),
(ponerMayus = (err, text) -> throw err if err?
text.toUpperCase() ), 
Mostrar= (err, newText) -> throw err if err? console.log nuevoTexto


   AUTOR PREGUNTA

Publicado 03 julio 2014 - 04:41
Gracias Nieves, me funciono perfecto


X