add floatAdd
This commit is contained in:
18
node_modules/lodash-es/_initCloneObject.js
generated
vendored
Normal file
18
node_modules/lodash-es/_initCloneObject.js
generated
vendored
Normal file
@ -0,0 +1,18 @@
|
||||
import baseCreate from './_baseCreate.js';
|
||||
import getPrototype from './_getPrototype.js';
|
||||
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))
|
||||
? baseCreate(getPrototype(object))
|
||||
: {};
|
||||
}
|
||||
|
||||
export default initCloneObject;
|
Reference in New Issue
Block a user