add hw2
This commit is contained in:
		
							
								
								
									
										32
									
								
								node_modules/lodash-es/conformsTo.js
									
									
									
										generated
									
									
										vendored
									
									
										Normal file
									
								
							
							
						
						
									
										32
									
								
								node_modules/lodash-es/conformsTo.js
									
									
									
										generated
									
									
										vendored
									
									
										Normal file
									
								
							| @@ -0,0 +1,32 @@ | ||||
| import baseConformsTo from './_baseConformsTo.js'; | ||||
| import keys from './keys.js'; | ||||
|  | ||||
| /** | ||||
|  * Checks if `object` conforms to `source` by invoking the predicate | ||||
|  * properties of `source` with the corresponding property values of `object`. | ||||
|  * | ||||
|  * **Note:** This method is equivalent to `_.conforms` when `source` is | ||||
|  * partially applied. | ||||
|  * | ||||
|  * @static | ||||
|  * @memberOf _ | ||||
|  * @since 4.14.0 | ||||
|  * @category Lang | ||||
|  * @param {Object} object The object to inspect. | ||||
|  * @param {Object} source The object of property predicates to conform to. | ||||
|  * @returns {boolean} Returns `true` if `object` conforms, else `false`. | ||||
|  * @example | ||||
|  * | ||||
|  * var object = { 'a': 1, 'b': 2 }; | ||||
|  * | ||||
|  * _.conformsTo(object, { 'b': function(n) { return n > 1; } }); | ||||
|  * // => true | ||||
|  * | ||||
|  * _.conformsTo(object, { 'b': function(n) { return n > 2; } }); | ||||
|  * // => false | ||||
|  */ | ||||
| function conformsTo(object, source) { | ||||
|   return source == null || baseConformsTo(object, source, keys(source)); | ||||
| } | ||||
|  | ||||
| export default conformsTo; | ||||
		Reference in New Issue
	
	Block a user
	 nik
					nik