We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 3cf8dfe commit 867aa01Copy full SHA for 867aa01
code.js
@@ -95,7 +95,7 @@
95
// Check for a non-empty data URL payload
96
if (match && match[2]) {
97
const parts = match[1].split(';');
98
- const map = parts.indexOf('charset=utf-8') >= 0 ? decodeURIComponent(match[2]) : atob(match[2]);
+ const map = parts.indexOf('base64') >= 0 ? atob(match[2]) : decodeURIComponent(match[2]);
99
finishLoading(code, map);
100
}
101
0 commit comments