mirror of
https://github.com/whoisclebs/lodash.git
synced 2026-02-03 08:37:49 +00:00
Cleanup imports in baseClone and baseMergeDeep.
This commit is contained in:
16
.internal/initCloneObject.js
Normal file
16
.internal/initCloneObject.js
Normal file
@@ -0,0 +1,16 @@
|
||||
import isPrototype from './isPrototype.js'
|
||||
|
||||
/**
|
||||
* 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))
|
||||
? Object.create(Object.getPrototypeOf(object))
|
||||
: {}
|
||||
}
|
||||
|
||||
export default initCloneObject
|
||||
Reference in New Issue
Block a user