mirror of
https://github.com/whoisclebs/lodash.git
synced 2026-01-29 14:37:49 +00:00
19 lines
475 B
JavaScript
19 lines
475 B
JavaScript
import baseCreate from './_baseCreate';
|
|
import getPrototype from './_getPrototype';
|
|
import isPrototype from './_isPrototype';
|
|
|
|
/**
|
|
* Initializes an object clone.
|
|
*
|
|
* @private
|
|
* @param {Object} object The object to clone.
|
|
* @returns {Object} Returns the initialized clone.
|
|
*/
|
|
function initCloneObject(object) {
|
|
return (typeof object.constructor == 'function' && !isPrototype(object))
|
|
? baseCreate(getPrototype(object))
|
|
: {};
|
|
}
|
|
|
|
export default initCloneObject;
|