You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
constisDateObject=(value: unknown): value is Date=>valueinstanceofDate;constisNullOrUndefined=(value: unknown): value is null|undefined=>value==null;constisObjectType=(value: unknown): value is object=>typeofvalue==="object";constisObject=<Textendsobject>(value: unknown): value is T=>!isNullOrUndefined(value)&&!Array.isArray(value)&&isObjectType(value)&&!isDateObject(value);constisEmpty=(value: any): boolean=>{return(value===null||value===undefined||value===""||(Array.isArray(value)&&value.length===0)||(typeofvalue==="object"&&value!==null&&Object.getPrototypeOf(value)===Object.prototype&&Object.keys(value).length===0));};typeEmptyObject={[Kinstring|number]: never};constisPlainObjects=(value: unknown): value is EmptyObject=>isObject(value)&&!Object.keys(value).length;