ohctechv3/.svn/pristine/f6/f66d8ff44c0117fb5977e374a34f9de81d16ccbd.svn-base

19 lines
484 B
Plaintext
Raw Normal View History

2024-10-28 15:03:36 +05:30
import baseCreate from './_baseCreate.js';
import getPrototype from './_getPrototype.js';
import isPrototype from './_isPrototype.js';
/**
* 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;