UNPKG

459 BTypeScriptView Raw
1export declare const isUndefined: (obj: any) => obj is undefined;
2export declare const isFunction: (fn: any) => boolean;
3export declare const isObject: (fn: any) => fn is object;
4export declare const isString: (fn: any) => fn is string;
5export declare const isConstructor: (fn: any) => boolean;
6export declare const validatePath: (path: any) => string;
7export declare const isNil: (obj: any) => boolean;
8export declare const isEmpty: (array: any) => boolean;