* Initializes an object clone. * * @private * @param {Object} object The object to clone. * @returns {Object} Returns the initialized clone.
(object)
| 28562 | * @returns {Object} Returns the initialized clone. |
| 28563 | */ |
| 28564 | function initCloneObject(object) { |
| 28565 | return typeof object.constructor == 'function' && !isPrototype(object) ? baseCreate(getPrototype(object)) : {}; |
| 28566 | } |
| 28567 | |
| 28568 | module.exports = initCloneObject; |
| 28569 |
no test coverage detected