Cleanup imports in baseClone and baseMergeDeep.

This commit is contained in:
Michał Lipiński
2017-02-21 10:12:51 +01:00
parent 2a3296111d
commit aaef6f6737
2 changed files with 16 additions and 16 deletions

View 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