aboutsummaryrefslogtreecommitdiff
path: root/node_modules/es5-ext/object/flatten.js
diff options
context:
space:
mode:
Diffstat (limited to 'node_modules/es5-ext/object/flatten.js')
-rw-r--r--node_modules/es5-ext/object/flatten.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/node_modules/es5-ext/object/flatten.js b/node_modules/es5-ext/object/flatten.js
index 4895ed632..34e1ab09b 100644
--- a/node_modules/es5-ext/object/flatten.js
+++ b/node_modules/es5-ext/object/flatten.js
@@ -5,7 +5,7 @@ var isPlainObject = require("./is-plain-object")
, process;
-process = function self (value, key) {
+process = function self(value, key) {
if (isPlainObject(value)) forEach(value, self, this);
else this[key] = value;
};