mirror of
https://github.com/kremalicious/metamask-extension.git
synced 2024-11-22 18:00:18 +01:00
d4ebf98cc4
This should include no functional changes. We only use `electron` for `react-devtools`, which appears to still work after this update. This replaces PR #12338.
63 lines
2.2 KiB
Diff
63 lines
2.2 KiB
Diff
diff --git a/node_modules/@babel/runtime/helpers/extends.js b/node_modules/@babel/runtime/helpers/extends.js
|
|
index eaf9547..d0474f5 100644
|
|
--- a/node_modules/@babel/runtime/helpers/extends.js
|
|
+++ b/node_modules/@babel/runtime/helpers/extends.js
|
|
@@ -1,20 +1,5 @@
|
|
function _extends() {
|
|
- module.exports = _extends = Object.assign || function (target) {
|
|
- for (var i = 1; i < arguments.length; i++) {
|
|
- var source = arguments[i];
|
|
-
|
|
- for (var key in source) {
|
|
- if (Object.prototype.hasOwnProperty.call(source, key)) {
|
|
- target[key] = source[key];
|
|
- }
|
|
- }
|
|
- }
|
|
-
|
|
- return target;
|
|
- };
|
|
-
|
|
- module.exports["default"] = module.exports, module.exports.__esModule = true;
|
|
- return _extends.apply(this, arguments);
|
|
+ return Object.assign(...arguments)
|
|
}
|
|
|
|
module.exports = _extends;
|
|
diff --git a/node_modules/@babel/runtime/helpers/getPrototypeOf.js b/node_modules/@babel/runtime/helpers/getPrototypeOf.js
|
|
index a6916eb..e01b2d6 100644
|
|
--- a/node_modules/@babel/runtime/helpers/getPrototypeOf.js
|
|
+++ b/node_modules/@babel/runtime/helpers/getPrototypeOf.js
|
|
@@ -1,9 +1,5 @@
|
|
function _getPrototypeOf(o) {
|
|
- module.exports = _getPrototypeOf = Object.setPrototypeOf ? Object.getPrototypeOf : function _getPrototypeOf(o) {
|
|
- return o.__proto__ || Object.getPrototypeOf(o);
|
|
- };
|
|
- module.exports["default"] = module.exports, module.exports.__esModule = true;
|
|
- return _getPrototypeOf(o);
|
|
+ return Object.getPrototypeOf(o);
|
|
}
|
|
|
|
module.exports = _getPrototypeOf;
|
|
diff --git a/node_modules/@babel/runtime/helpers/setPrototypeOf.js b/node_modules/@babel/runtime/helpers/setPrototypeOf.js
|
|
index 415797b..63312f2 100644
|
|
--- a/node_modules/@babel/runtime/helpers/setPrototypeOf.js
|
|
+++ b/node_modules/@babel/runtime/helpers/setPrototypeOf.js
|
|
@@ -1,12 +1,7 @@
|
|
function _setPrototypeOf(o, p) {
|
|
- module.exports = _setPrototypeOf = Object.setPrototypeOf || function _setPrototypeOf(o, p) {
|
|
- o.__proto__ = p;
|
|
- return o;
|
|
- };
|
|
-
|
|
- module.exports["default"] = module.exports, module.exports.__esModule = true;
|
|
- return _setPrototypeOf(o, p);
|
|
-}
|
|
+ o.__proto__ = p;
|
|
+ return o;
|
|
+};
|
|
|
|
module.exports = _setPrototypeOf;
|
|
module.exports["default"] = module.exports, module.exports.__esModule = true;
|
|
\ No newline at end of file
|