Files
lodash/.internal/initCloneObject.js
John-David Dalton b6bdb23ffd Remove getPrototype.
2017-01-10 17:44:48 -08:00

18 lines
464 B
JavaScript

import baseCreate from './.internal/baseCreate.js';
import isPrototype from './.internal/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(Object.getPrototypeOf(object))
: {};
}
export default initCloneObject;