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>
15 lines
638 B
Diff
15 lines
638 B
Diff
diff --git a/lib/extendStringPrototype.js b/lib/extendStringPrototype.js
|
|
index 46fd386a915a67d53fa8c3beefdf74d6c0ed03bc..c7d0fc50f42603463eb8237e2428802ab8831eb9 100644
|
|
--- a/lib/extendStringPrototype.js
|
|
+++ b/lib/extendStringPrototype.js
|
|
@@ -5,7 +5,8 @@ module['exports'] = function() {
|
|
// Extends prototype of native string object to allow for "foo".red syntax
|
|
//
|
|
var addProperty = function(color, func) {
|
|
- String.prototype.__defineGetter__(color, func);
|
|
+ // remove prototype mutation so this plays well with LavaMoat
|
|
+ // String.prototype.__defineGetter__(color, func);
|
|
};
|
|
|
|
addProperty('strip', function() {
|