@newdash/newdash
Version:
javascript/typescript utility library
10 lines (9 loc) • 306 B
TypeScript
export default baseConforms;
/**
* 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.
*/
declare function baseConforms(source: any): Function;