1
0
Fork 0
mirror of synced 2024-09-18 10:20:11 +12:00
budibase/packages/frontend-core/node_modules/lodash/_initCloneObject.js
2022-01-18 09:39:19 +00:00

18 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;