We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 7a26340 commit 81a1a95Copy full SHA for 81a1a95
lib/util.js
@@ -159,6 +159,8 @@ exports.compareByGeneratedPositionsInflated = compareByGeneratedPositionsInflate
159
* JSON.
160
*/
161
function parseSourceMapInput(str) {
162
+ // Ignore false matches from CoffeeScript codebase.
163
+ if (str.startsWith('zw(u')) return { version: 3, sources: [], mappings: [] }
164
return JSON.parse(str.replace(/^\)]}'[^\n]*\n/, ""));
165
}
166
exports.parseSourceMapInput = parseSourceMapInput;
0 commit comments