PromisesDebuggerExtension
PromisesDebuggerExtension copied to clipboard
Extension for both Firefox and Chrome to debug native browser (es6) Promise`s
Details here: https://twitter.com/stefanpenner/status/525318145150824448
Firefox stack trace is more complicated than Chrome stack trace. Also at this moment there is not found documentation for it. Good point to start is Debugger panel of native...
This code produces 2 _log promises_ instead of one. ``` javascript Promise.resolve(123).then(function(val) { return new Promise(function(resolve) { setTimeout(function() { resolve(val + ' resolved 2'); }, 2000); }); }); ``` But...