Version 1
[yaffs-website] / node_modules / grunt-legacy-util / node_modules / lodash / _initCloneObject.js
diff --git a/node_modules/grunt-legacy-util/node_modules/lodash/_initCloneObject.js b/node_modules/grunt-legacy-util/node_modules/lodash/_initCloneObject.js
new file mode 100644 (file)
index 0000000..b1da6cb
--- /dev/null
@@ -0,0 +1,20 @@
+var baseCreate = require('./_baseCreate'),
+    isFunction = require('./isFunction'),
+    isPrototype = require('./_isPrototype');
+
+/**
+ * Initializes an object clone.
+ *
+ * @private
+ * @param {Object} object The object to clone.
+ * @returns {Object} Returns the initialized clone.
+ */
+function initCloneObject(object) {
+  if (isPrototype(object)) {
+    return {};
+  }
+  var Ctor = object.constructor;
+  return baseCreate(isFunction(Ctor) ? Ctor.prototype : undefined);
+}
+
+module.exports = initCloneObject;