UNPKG

@n3okill/utils

Version:
7 lines (6 loc) 258 B
/** * Check if the object has the property * @param obj The object to search for the property * @param name The name of the property can be on the form "a.b.c[1].d" */ export declare function hasProperty(obj: any, name: string | Array<string>): boolean;