nycJSorg/angular-presentation

View on GitHub
apps/kirjs/src/app/modules/ast/samples/find-debugger/hint.js

Summary

Maintainability
A
0 mins
Test Coverage
debugger;

function hello() {
  debugger;
}

// There
function hello3() {
  return 'debugger in a string';
}

// There is no debugger
function hello2() {}

// there's no debugger
function hello3() {}