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 1c4821a commit d7f2435Copy full SHA for d7f2435
lib/browserify-wrapper/parse-base64.js
@@ -5,7 +5,7 @@ var dataURLToBlob = function(base64) {
5
if (base64.split(',')[0] && base64.split(',')[0].indexOf('base64') >= 0) {
6
base64 = base64.split(',')[1];
7
}
8
- return new Buffer(base64, 'base64').toString('utf8');
+ return new Buffer(base64, 'base64');
9
};
10
11
module.exports = dataURLToBlob;
0 commit comments