add hw2
This commit is contained in:
		
							
								
								
									
										20
									
								
								node_modules/lodash-es/_baseUnset.js
									
									
									
										generated
									
									
										vendored
									
									
										Normal file
									
								
							
							
						
						
									
										20
									
								
								node_modules/lodash-es/_baseUnset.js
									
									
									
										generated
									
									
										vendored
									
									
										Normal file
									
								
							| @@ -0,0 +1,20 @@ | ||||
| import castPath from './_castPath.js'; | ||||
| import last from './last.js'; | ||||
| import parent from './_parent.js'; | ||||
| import toKey from './_toKey.js'; | ||||
|  | ||||
| /** | ||||
|  * The base implementation of `_.unset`. | ||||
|  * | ||||
|  * @private | ||||
|  * @param {Object} object The object to modify. | ||||
|  * @param {Array|string} path The property path to unset. | ||||
|  * @returns {boolean} Returns `true` if the property is deleted, else `false`. | ||||
|  */ | ||||
| function baseUnset(object, path) { | ||||
|   path = castPath(path, object); | ||||
|   object = parent(object, path); | ||||
|   return object == null || delete object[toKey(last(path))]; | ||||
| } | ||||
|  | ||||
| export default baseUnset; | ||||
		Reference in New Issue
	
	Block a user
	 nik
					nik