Skip to content

Commit

Permalink
#19 - remove extra semicolon
Browse files Browse the repository at this point in the history
Signed-off-by: Aurélien Pupier <[email protected]>
  • Loading branch information
apupier authored and lhein committed May 22, 2018
1 parent 4399268 commit dc55b2f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/extension.ts
Original file line number Diff line number Diff line change
Expand Up @@ -221,7 +221,7 @@ function startedInDebugMode(): boolean {
let args = (process as any).execArgv;
if (args) {
return args.some((arg) => /^--debug=?/.test(arg) || /^--debug-brk=?/.test(arg));
};
}
return false;
}

Expand Down

0 comments on commit dc55b2f

Please sign in to comment.