Repository URL to install this package:
Version:
0.0.2 ▾
|
website-mirror-by-proxy
/
opt
/
website-mirror-by-proxy
/
node_modules
/
lodash
/
_initCloneObject.js
|
---|
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;