You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
13 lines
664 B
13 lines
664 B
export declare class ObjectUtils {
|
|
static equals(obj1: any, obj2: any, field?: string): boolean;
|
|
static equalsByValue(obj1: any, obj2: any): boolean;
|
|
static resolveFieldData(data: any, field: any): any;
|
|
static isFunction(obj: any): boolean;
|
|
static reorderArray(value: any[], from: number, to: number): void;
|
|
static insertIntoOrderedArray(item: any, index: number, arr: any[], sourceArr: any[]): void;
|
|
static findIndexInList(item: any, list: any): number;
|
|
static contains(value: any, list: any): boolean;
|
|
static removeAccents(str: any): any;
|
|
static isEmpty(value: any): boolean;
|
|
static isNotEmpty(value: any): boolean;
|
|
}
|