Files
lodash/_initCloneObject.js
John-David Dalton 65e5d998b3 Bump to v4.5.1.
2016-02-21 20:40:07 -08:00

21 lines
555 B
JavaScript

define(['./_baseCreate', './isFunction', './_isPrototype'], function(baseCreate, isFunction, 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 (isFunction(object.constructor) && !isPrototype(object))
? baseCreate(getPrototypeOf(object))
: {};
}
return initCloneObject;
});