Value of “this” is incorrect when debugging Babel transpiled React with Chrome Devtools

Unfortunately this is a fact of life when using the debugger in Babelified code with Chrome. To implement arrow functions with the ECMAScript spec behavior, the this keyword needs to be transformed into a different name, and there’s currently no way to tell Chrome what do to for debugging. Firefox’s developer tools have a bunch … Read more