mirror of
https://github.com/kremalicious/metamask-extension.git
synced 2024-11-22 18:00:18 +01:00
6d1170f06c
Co-authored-by: Mark Stacey <markjstacey@gmail.com> Co-authored-by: ricky <ricky.miller@gmail.com> Co-authored-by: Elliot Winkler <elliot.winkler@gmail.com> Co-authored-by: legobeat <109787230+legobeat@users.noreply.github.com> Co-authored-by: legobt <6wbvkn0j@anonaddy.me> Co-authored-by: Pedro Figueiredo <pedro.figueiredo@consensys.net>
14 lines
445 B
Diff
14 lines
445 B
Diff
diff --git a/index.js b/index.js
|
|
index df74d6126073947a34234f271a033c4d13ed02e5..833a4846989673c597500be60301a52132ebaa09 100644
|
|
--- a/index.js
|
|
+++ b/index.js
|
|
@@ -91,7 +91,7 @@ Generator.prototype.addSourceContent = function (sourceFile, sourcesContent) {
|
|
*/
|
|
Generator.prototype.base64Encode = function () {
|
|
var map = this.toString();
|
|
- return new Buffer(map).toString('base64');
|
|
+ return Buffer.from(map).toString('base64');
|
|
};
|
|
|
|
/**
|