@newdash/newdash
Version:
javascript/typescript utility library
29 lines (28 loc) • 885 B
TypeScript
/**
* 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 5.12.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
*
* ```js
* const object = { 'a': 1, 'b': 2 }
*
* conformsTo(object, { 'b': function(n) { return n > 1 } })
* // => true
*
* conformsTo(object, { 'b': function(n) { return n > 2 } })
* // => false
* ```
*/
export declare function conformsTo<T extends Record<string, any>>(object: T, source: {
[key in keyof T]?: (value: any) => boolean;
}): boolean;
export default conformsTo;