mirror of
https://github.com/whoisclebs/lodash.git
synced 2026-01-29 14:37:49 +00:00
31 lines
922 B
JavaScript
31 lines
922 B
JavaScript
import baseConformsTo from './.internal/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.
|
|
*
|
|
* @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
|
|
*
|
|
* const 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
|