Uncaught TypeError in latest Chrome while accessing error.stack
See original GitHub issueThis was working very well until version 0.4.8.
After upgrading to version 0.4.9, I get in the console:
Uncaught TypeError
(anonymous) @ browser-source-map-support.js.min:107
(anonymous) @ browser-source-map-support.js.min:101
(anonymous) @ browser-source-map-support.js.min:107
(anonymous) @ browser-source-map-support.js.min:101
a @ browser-source-map-support.js.min:101
b @ browser-source-map-support.js.min:104
(anonymous) @ browser-source-map-support.js.min:105
f @ browser-source-map-support.js.min:105
i @ pipelet.js:4203
The code in pipelet.js triggering this is:
try {
throw new Error( '' );
} catch( e ) {
var stack = e.stack // this is line 4203 in pipelet.js
// use stack
}
Issue Analytics
- State:
- Created 7 years ago
- Reactions:1
- Comments:6 (4 by maintainers)
Top Results From Across the Web
popup - Uncaught TypeError in CHROME - Stack Overflow
The problem is, data from popup not transacted to parent html. On chrome dubugging tools said Uncaught TypeError: Cannot read property 'tot' of ......
Read more >New Error caused by recent Chrome Update: RangeError
Chrome can pause on any JavaScript error thrown, caught and uncaught ones. Go to the sources tab in Chrome DevTools, hit the small...
Read more >A Definitive Guide to Handling Errors in JavaScript - Kinsta
TypeError is one of the most common errors in JavaScript apps. This error is created when some value doesn't turn out to be...
Read more >Fix "Aw, Snap!" page crashes and other page loading errors
On your Android phone or tablet, open the Chrome app Chrome . · Tap More More and then New Incognito tab. · In...
Read more >Troubleshooting | Apps Script - Google Developers
There is an error in your script that doesn't have a corresponding error message. Try debugging your script and see if you can...
Read more >
Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start Free
Top Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
Found the issue, here is the fix: https://github.com/evanw/node-source-map-support/pull/168
@LinusU can you please check if that’s ok publish a new version on npm?
Thanks !
🎉 🎉