mirror of
https://github.com/whoisclebs/lodash.git
synced 2026-02-03 00:27:50 +00:00
Remove baseCreate.
This commit is contained in:
@@ -1,17 +0,0 @@
|
||||
import baseCreate from './.internal/baseCreate.js'
|
||||
import isPrototype from './.internal/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))
|
||||
? baseCreate(Object.getPrototypeOf(object))
|
||||
: {}
|
||||
}
|
||||
|
||||
export default initCloneObject
|
||||
Reference in New Issue
Block a user