No Operation

Command: no-op

Description: A command that does nothing and returns the working data unchanged.

Source Code

function noOp(working, command, p) {
  return working.text;
}
noOp.title = "No Operation";
noOp.description =
  "A command that does nothing and returns the working data unchanged.";
noOp.args = [];
noOp.passthrough = true;

export default noOp;