Reword the comment

This commit is contained in:
Dan Abramov 2015-12-27 00:09:51 +00:00
parent 6dcde1f83b
commit ccbccd6810

View File

@ -68,9 +68,11 @@ function computeNextEntry(reducer, action, state, error) {
} catch (err) { } catch (err) {
nextError = err.toString(); nextError = err.toString();
if (typeof window === 'object' && typeof window.chrome !== 'undefined') { if (typeof window === 'object' && typeof window.chrome !== 'undefined') {
// Solve the issue with loosing sourceMaps in Chrome // In Chrome, rethrowing provides better source map support
setTimeout(() => { throw err; }, 0); setTimeout(() => { throw err; });
} else console.error(err.stack || err); } else {
console.error(err.stack || err);
}
} }
return { return {