mirror of
https://github.com/whoisclebs/lodash.git
synced 2026-02-07 18:07:49 +00:00
Cleanup imports in baseClone and baseMergeDeep.
This commit is contained in:
@@ -17,12 +17,9 @@ import copySymbolsIn from './copySymbolsIn.js'
|
|||||||
import getAllKeys from './getAllKeys.js'
|
import getAllKeys from './getAllKeys.js'
|
||||||
import getAllKeysIn from './getAllKeysIn.js'
|
import getAllKeysIn from './getAllKeysIn.js'
|
||||||
import getTag from './getTag.js'
|
import getTag from './getTag.js'
|
||||||
import initCloneArray from './initCloneArray.js'
|
|
||||||
import initCloneByTag from './initCloneByTag.js'
|
|
||||||
import initCloneObject from './initCloneObject.js'
|
import initCloneObject from './initCloneObject.js'
|
||||||
import isBuffer from '../isBuffer.js'
|
import isBuffer from '../isBuffer.js'
|
||||||
import isObject from '../isObject.js'
|
import isObject from '../isObject.js'
|
||||||
import isPrototype from './isPrototype.js'
|
|
||||||
import keys from '../keys.js'
|
import keys from '../keys.js'
|
||||||
|
|
||||||
/** Used to compose bitmasks for cloning. */
|
/** Used to compose bitmasks for cloning. */
|
||||||
@@ -78,19 +75,6 @@ cloneableTags[weakMapTag] = false
|
|||||||
/** Used to check objects for own properties. */
|
/** Used to check objects for own properties. */
|
||||||
const hasOwnProperty = Object.prototype.hasOwnProperty
|
const hasOwnProperty = Object.prototype.hasOwnProperty
|
||||||
|
|
||||||
/**
|
|
||||||
* 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))
|
|
||||||
: {}
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Initializes an object clone based on its `toStringTag`.
|
* Initializes an object clone based on its `toStringTag`.
|
||||||
*
|
*
|
||||||
|
|||||||
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