chore: Remove debugger calls

/puter/packages/phoenix/src/ansi-shell/arg-parsers/simple-parser.js
  30:38  warning  Unexpected 'debugger' statement  no-debugger

/puter/packages/phoenix/src/ansi-shell/pipeline/Coupler.js
  71:32  warning  Unexpected 'debugger' statement  no-debugger
This commit is contained in:
Sam Atkins
2024-05-02 17:41:14 +01:00
parent fa7c6bee96
commit 44aa4f1b0a
2 changed files with 0 additions and 2 deletions
@@ -27,7 +27,6 @@ export default {
let result;
try {
if ( ! ctx.locals.args ) debugger;
result = parseArgs({ ...spec, args: ctx.locals.args });
} catch (e) {
await ctx.externs.out.write(
@@ -68,7 +68,6 @@ export class Coupler {
break;
}
if ( this.on_ ) {
if ( ! value ) debugger;
await this.target.write(value);
}
}