Pregunta

Could it be simplified in CoffeeScript:

redisSETNXReply.toString() == '1' or redisSETNXReply.toString() =='0'

to something like:

redisSETNXReply.toString() == '1' or '0'

?

¿Fue útil?

Solución

You could do this:

redisSETNXReply.toString() in ['1', '0']
Licenciado bajo: CC-BY-SA con atribución
No afiliado a StackOverflow
scroll top