diff --git a/src/node/NodeRecipe.mjs b/src/node/NodeRecipe.mjs index d50f603e..538b8a06 100644 --- a/src/node/NodeRecipe.mjs +++ b/src/node/NodeRecipe.mjs @@ -83,6 +83,10 @@ class NodeRecipe { this.opList = recipeConfig.map((ing) => this._validateIngredient(ing)); } + /** + * Returns the inputType of the first operation in the opList + * @returns String + */ firstActiveInputType() { const first = this.opList[0]; if (!first) return null;