Question

Could it be simplified in CoffeeScript:

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

to something like:

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

?

Was it helpful?

Solution

You could do this:

redisSETNXReply.toString() in ['1', '0']
Licensed under: CC-BY-SA with attribution
Not affiliated with StackOverflow
scroll top