All Downloads are FREE. Search and download functionalities are using the official Maven repository.

node_modules.lodash._initCloneObject.js Maven / Gradle / Ivy

There is a newer version: 3.3.1
Show newest version
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;




© 2015 - 2025 Weber Informatics LLC | Privacy Policy