mirror of
https://github.com/whoisclebs/lodash.git
synced 2026-01-30 23:17:48 +00:00
21 lines
506 B
JavaScript
21 lines
506 B
JavaScript
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;
|