From 93e42e6a6e6d40940b7126d57fb314c812b72530 Mon Sep 17 00:00:00 2001 From: GCHQDeveloper581 <63102987+GCHQDeveloper581@users.noreply.github.com> Date: Tue, 14 Jul 2026 12:19:07 +0000 Subject: [PATCH] Fix minor linting issue --- src/node/NodeRecipe.mjs | 4 ++++ 1 file changed, 4 insertions(+) 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;