@newdash/newdash
Version:
javascript/typescript utility library
11 lines (10 loc) • 406 B
TypeScript
export default baseConformsTo;
/**
* The base implementation of `conformsTo` which accepts `props` to check.
*
* @private
* @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`.
*/
declare function baseConformsTo(object: any, source: any, props: any): boolean;