How can we call a function with parameters in emblem's conditional statement. Like I have a function:
priorExist: (prior) ->
@get("priors").findBy("condition", prior)
But I get an error when I call it in emblem like this
if priorExist(name)
Is there any way to call above function in emblem?