Files
lodash/_initCloneObject.js
John-David Dalton ddf9328c67 Bump to v4.6.0.
2016-03-01 19:18:30 -08:00

21 lines
520 B
JavaScript

var baseCreate = require('./_baseCreate'),
isPrototype = require('./_isPrototype');
/** Built-in value references. */
var getPrototypeOf = Object.getPrototypeOf;
/**
* 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(getPrototypeOf(object))
: {};
}
module.exports = initCloneObject;