* The base implementation of `_.conforms` which doesn't clone `source`. * * @private * @param {Object} source The object of property predicates to conform to. * @returns {Function} Returns the new spec function.
(source)
| 13332 | * @returns {Function} Returns the new spec function. |
| 13333 | */ |
| 13334 | function baseConforms(source) { |
| 13335 | var props = keys(source); |
| 13336 | return function(object) { |
| 13337 | return baseConformsTo(object, source, props); |
| 13338 | }; |
| 13339 | } |
| 13340 | |
| 13341 | /** |
| 13342 | * The base implementation of `_.conformsTo` which accepts `props` to check. |
no test coverage detected