Constructor # new EvalChain() create an evaluation chain. Methods # Add(f) add a function to the chain. Parameters: Name Type Description f function a function to be called by the chain. # Step() → {boolean} execute the next function (if any). Returns: true if there were any functions to execute, else false. Type: boolean