* 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. * * @st
(object, source)
| 21772 | * // => false |
| 21773 | */ |
| 21774 | function conformsTo(object, source) { |
| 21775 | return source == null || baseConformsTo(object, source, keys(source)); |
| 21776 | } |
| 21777 | |
| 21778 | /** |
| 21779 | * Performs a |
nothing calls this directly
no test coverage detected