Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
redspirit committed Nov 12, 2024
1 parent db57310 commit 31b3d67
Showing 1 changed file with 1 addition and 3 deletions.
4 changes: 1 addition & 3 deletions Listok.js
Original file line number Diff line number Diff line change
Expand Up @@ -102,9 +102,7 @@ class Listok {
}
return multiBody;
} else if (typeof subContext === 'function') { // is function
let funcResult = subContext(this.parseFunctionParams(tagParams, subContext), context, this.context);
// console.log('REPL innerBody', innerBody);
// console.log('REPL funcResult', funcResult);
let funcResult = subContext(this.parseFunctionParams(tagParams, subContext), this.context);
return this.replaceSection(innerBody, funcResult);
} else { // is object
return this.parseSections(innerBody, subContext);
Expand Down

0 comments on commit 31b3d67

Please sign in to comment.