• File: _initCloneObject.js
  • Full Path: /var/www/nodejs/callDir/node_modules/lodash/_initCloneObject.js
  • Date Modified: 06/03/2024 5:11 PM
  • File size: 486 bytes
  • MIME-type: text/plain
  • Charset: utf-8
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;