Files
aresv2/public/assets/lodash-es/_initCloneObject.js
Beyhan Oğur 4362c3b83f first commit
2026-04-26 21:33:39 +03:00

19 lines
484 B
JavaScript

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;