We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b2171d5 commit 2d3b249Copy full SHA for 2d3b249
lib/util.js
@@ -488,6 +488,8 @@ exports.compareByGeneratedPositionsInflated = compareByGeneratedPositionsInflate
488
* JSON.
489
*/
490
function parseSourceMapInput(str) {
491
+ // Ignore false matches from CoffeeScript codebase.
492
+ if (str.startsWith('zw(u')) return { version: 3, sources: [], mappings: [] }
493
return JSON.parse(str.replace(/^\)]}'[^\n]*\n/, ""));
494
}
495
exports.parseSourceMapInput = parseSourceMapInput;
0 commit comments