Files
lodash/.internal/initCloneObject.js
2019-09-26 00:58:44 -07:00

17 lines
403 B
JavaScript

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))
? Object.create(Object.getPrototypeOf(object))
: {}
}
export default initCloneObject