mirror of
https://github.com/kremalicious/metamask-extension.git
synced 2024-11-22 09:57:02 +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>
26 lines
645 B
Diff
26 lines
645 B
Diff
diff --git a/index.js b/index.js
|
|
index abf0449c9546665ebc4fbe2601e75ad937d98c17..0b5722d3f2e7bebb4bf25b56a690e22aacc7beb3 100644
|
|
--- a/index.js
|
|
+++ b/index.js
|
|
@@ -1,18 +1,3 @@
|
|
'use strict';
|
|
|
|
-var define = require('define-properties');
|
|
-var callBind = require('call-bind');
|
|
-
|
|
-var implementation = require('./implementation');
|
|
-var getPolyfill = require('./polyfill');
|
|
-var shim = require('./shim');
|
|
-
|
|
-var polyfill = callBind(getPolyfill(), Object);
|
|
-
|
|
-define(polyfill, {
|
|
- getPolyfill: getPolyfill,
|
|
- implementation: implementation,
|
|
- shim: shim
|
|
-});
|
|
-
|
|
-module.exports = polyfill;
|
|
+module.exports = Object.values;
|
|
\ No newline at end of file
|