mirror of
https://github.com/thangisme/notes.git
synced 2024-11-01 00:27:24 -04:00
19 lines
486 B
JavaScript
19 lines
486 B
JavaScript
|
var baseCreate = require('./_baseCreate'),
|
||
|
getPrototype = require('./_getPrototype'),
|
||
|
isPrototype = require('./_isPrototype');
|
||
|
|
||
|
/**
|
||
|
* 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(getPrototype(object))
|
||
|
: {};
|
||
|
}
|
||
|
|
||
|
module.exports = initCloneObject;
|