33 lines
1022 B
TypeScript
33 lines
1022 B
TypeScript
import { ConformsPredicateObject } from '../_internal/ConformsPredicateObject.mjs';
|
|
|
|
/**
|
|
* 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.
|
|
*
|
|
* @template T - The type of the target object.
|
|
* @param {T} target The object to inspect.
|
|
* @param {ConformsPredicateObject<T>} 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 };
|
|
* const source = {
|
|
* 'a': (n) => n > 0,
|
|
* 'b': (n) => n > 1
|
|
* };
|
|
*
|
|
* console.log(conformsTo(object, source)); // => true
|
|
*
|
|
* const source2 = {
|
|
* 'a': (n) => n > 1,
|
|
* 'b': (n) => n > 1
|
|
* };
|
|
*
|
|
* console.log(conformsTo(object, source2)); // => false
|
|
*/
|
|
declare function conformsTo<T>(target: T, source: ConformsPredicateObject<T>): boolean;
|
|
|
|
export { conformsTo };
|