Skip to content

Commit

Permalink
Remove commented console.logs
Browse files Browse the repository at this point in the history
  • Loading branch information
TooTallNate committed Jul 18, 2023
1 parent f1f3220 commit 833f0e9
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 3 deletions.
2 changes: 0 additions & 2 deletions packages/degenerator/src/compile.ts
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,6 @@ export function compile<R = unknown, A extends unknown[] = []>(
);
}
const fnHandle = vm.newFunction(name, (...args) => {
//console.log('invoke', { name, args });
const result = value(
...args.map((arg) => quickJSHandleToHost(vm, arg))
);
Expand All @@ -44,7 +43,6 @@ export function compile<R = unknown, A extends unknown[] = []>(
}
}

//console.log(compiled);
const fnResult = vm.evalCode(`${compiled};${returnName}`, options.filename);
const fn = vm.unwrapResult(fnResult);

Expand Down
1 change: 0 additions & 1 deletion packages/proxy/src/bin/proxy.ts
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,6 @@ args.option(
// String
//);

//const flags = args.parse(process.argv, { name: pkg.name });
const flags = args.parse(process.argv);
const { port, authenticate } = flags;

Expand Down

0 comments on commit 833f0e9

Please sign in to comment.