* 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 _
(object, source)
| 11245 | * // => false |
| 11246 | */ |
| 11247 | function conformsTo(object, source) { |
| 11248 | return source == null || baseConformsTo(object, source, keys(source)); |
| 11249 | } |
| 11250 | |
| 11251 | /** |
| 11252 | * Performs a |
nothing calls this directly
no test coverage detected