functionless
functionless copied to clipboard
Should the intrinsic functions on $SFN be moved to StepFunction
Instead of the $SFN object, should we move them to static functions on the StepFunction class?
Instead of:
$SFN.waitFor(100);
It would be:
StepFunction.waitFor(100);
It eliminates a redundant name, $SFN, and may be more discoverable?
Yes