Remove `debugger` statement

JavaScript pattern

The code in production should not contain a debugger. It causes the browser to stop executing the code and open the debugger.


Apply with the Grit CLI
grit apply no_debugger

Remove debugger

BEFORE
function isTruthy(x) {
  debugger;
  return Boolean(x);
}
AFTER
function isTruthy(x) {
  return Boolean(x);
}