PromisesDebuggerExtension icon indicating copy to clipboard operation
PromisesDebuggerExtension copied to clipboard

Extension for both Firefox and Chrome to debug native browser (es6) Promise`s

Results 3 PromisesDebuggerExtension issues
Sort by recently updated
recently updated
newest added

Details here: https://twitter.com/stefanpenner/status/525318145150824448

enhancement
feature

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...

bug

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...

bug