aboutsummaryrefslogtreecommitdiff
path: root/node_modules/es5-ext/object/keys/shim.js
diff options
context:
space:
mode:
Diffstat (limited to 'node_modules/es5-ext/object/keys/shim.js')
-rw-r--r--node_modules/es5-ext/object/keys/shim.js4
1 files changed, 1 insertions, 3 deletions
diff --git a/node_modules/es5-ext/object/keys/shim.js b/node_modules/es5-ext/object/keys/shim.js
index bc802017e..a8908d5c7 100644
--- a/node_modules/es5-ext/object/keys/shim.js
+++ b/node_modules/es5-ext/object/keys/shim.js
@@ -4,6 +4,4 @@ var isValue = require("../is-value");
var keys = Object.keys;
-module.exports = function (object) {
- return keys(isValue(object) ? Object(object) : object);
-};
+module.exports = function (object) { return keys(isValue(object) ? Object(object) : object); };