You can not select more than 25 topics
			Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
		
		
		
		
		
			
		
			
				
					
					
						
							33 lines
						
					
					
						
							954 B
						
					
					
				
			
		
		
	
	
							33 lines
						
					
					
						
							954 B
						
					
					
				var baseConformsTo = require('./_baseConformsTo'),
 | 
						|
    keys = require('./keys');
 | 
						|
 | 
						|
/**
 | 
						|
 * 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));
 | 
						|
}
 | 
						|
 | 
						|
module.exports = conformsTo;
 |