You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
24 lines
659 B
24 lines
659 B
diff --git a/node_modules/object.values/index.js b/node_modules/object.values/index.js
|
|
index abf0449..2dc8083 100644
|
|
--- a/node_modules/object.values/index.js
|
|
+++ b/node_modules/object.values/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;
|
|
|