Debugger Wrapper

Wrap your function calls with debugger for instant breakpoint execution

Press ⌘/Ctrl + Enter to convert

How it works:

1.Enter your function call (e.g., wt(c))
2.Click Convert or press ⌘/Ctrl + Enter
3.
Get the wrapped version:
(() => {
  debugger;
  return wt(c)
})()
4.Paste in your browser console and execution will pause at the debugger statement