-
Notifications
You must be signed in to change notification settings - Fork 188
Open
Description
Is it possible to implement conditional control flow? I would like to skip over a few steps.
Something along these lines:
step(
function f1() { find('foo',this); },
function f2(err,foo) { if (foo) f4(foo); else return null; },
function f3(err) { create('foo',this); },
function f4(err,foo) { print(foo); }
);
If not, what is the best way to implement the code above?
Metadata
Metadata
Assignees
Labels
No labels