Skip to content

Commit

Permalink
remove debug log
Browse files Browse the repository at this point in the history
  • Loading branch information
benStre committed Feb 12, 2024
1 parent a1ed410 commit 8b04800
Showing 1 changed file with 0 additions and 1 deletion.
1 change: 0 additions & 1 deletion types/function.ts
Original file line number Diff line number Diff line change
Expand Up @@ -225,7 +225,6 @@ export class Function<T extends (...args: any) => any = (...args: any) => any> e
const args_match = function_body?.match(/^[^(]*\(([^)]*)\)/)?.[1];

if (!args_match?.length) return tuple;
console.log("normalize",args_match, function_body)
const args_strings = this.normalizeFunctionParams(args_match).split(",");
if (args_strings) {
for (let arg of args_strings) {
Expand Down

0 comments on commit 8b04800

Please sign in to comment.