for example
child.stdout.on \data (buffer) ->
result.stdout += buffer
-->
child.stdout.on('data', function(buffer){
return result.stdout += buffer;
});
and I need it without return. In F# I can add |> ignore
how can I handle it in livescript?