UNPKG

299 BTypeScriptView Raw
1/**
2 * 判断属性中的键和值是否包含在对象中
3 * @param obj 对象
4 * @param source 值
5 */
6export declare function isMatch(obj: any, source: any): boolean;
7
8declare module './ctor' {
9 interface XEUtilsMethods {
10 isMatch: typeof isMatch;
11 }
12}
13
14export default isMatch