add hw2
This commit is contained in:
		
							
								
								
									
										30
									
								
								node_modules/lodash-es/defaultsDeep.js
									
									
									
										generated
									
									
										vendored
									
									
										Normal file
									
								
							
							
						
						
									
										30
									
								
								node_modules/lodash-es/defaultsDeep.js
									
									
									
										generated
									
									
										vendored
									
									
										Normal file
									
								
							| @@ -0,0 +1,30 @@ | ||||
| import apply from './_apply.js'; | ||||
| import baseRest from './_baseRest.js'; | ||||
| import customDefaultsMerge from './_customDefaultsMerge.js'; | ||||
| import mergeWith from './mergeWith.js'; | ||||
|  | ||||
| /** | ||||
|  * This method is like `_.defaults` except that it recursively assigns | ||||
|  * default properties. | ||||
|  * | ||||
|  * **Note:** This method mutates `object`. | ||||
|  * | ||||
|  * @static | ||||
|  * @memberOf _ | ||||
|  * @since 3.10.0 | ||||
|  * @category Object | ||||
|  * @param {Object} object The destination object. | ||||
|  * @param {...Object} [sources] The source objects. | ||||
|  * @returns {Object} Returns `object`. | ||||
|  * @see _.defaults | ||||
|  * @example | ||||
|  * | ||||
|  * _.defaultsDeep({ 'a': { 'b': 2 } }, { 'a': { 'b': 1, 'c': 3 } }); | ||||
|  * // => { 'a': { 'b': 2, 'c': 3 } } | ||||
|  */ | ||||
| var defaultsDeep = baseRest(function(args) { | ||||
|   args.push(undefined, customDefaultsMerge); | ||||
|   return apply(mergeWith, undefined, args); | ||||
| }); | ||||
|  | ||||
| export default defaultsDeep; | ||||
		Reference in New Issue
	
	Block a user
	 nik
					nik