So I have the following code
Q.fcall(foo(input))
.then(
() ->
)
.fail(
)
foo = (input) ->
throw new Error('catch me!')
And I get the following error: Uncaught Error: catch me!. By docs In the call .failerrors must be detected caused by foo- Am I doing something wrong?
source
share