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
exportfunctionisObject(val: any): val is Record<any,any>{returnval!==null&&is(val,'Object');}exportfunctionisPromise<T=any>(val: unknown): val is Promise<T>{returnis(val,'Promise')&&isObject(val)&&isFunction(val.then)&&isFunction(val.catch);}
The text was updated successfully, but these errors were encountered:
我认为这个写的有问题 (in @/utils/is)
The text was updated successfully, but these errors were encountered: