1 | export declare const isUndefined: (obj: any) => obj is undefined;
|
2 | export declare const isObject: (fn: any) => fn is object;
|
3 | export declare const isPlainObject: (fn: any) => fn is object;
|
4 | export declare const addLeadingSlash: (path?: string) => string;
|
5 | export declare const normalizePath: (path?: string) => string;
|
6 | export declare const stripEndSlash: (path: string) => string;
|
7 | export declare const isFunction: (val: any) => val is Function;
|
8 | export declare const isString: (val: any) => val is string;
|
9 | export declare const isNumber: (val: any) => val is number;
|
10 | export declare const isConstructor: (val: any) => boolean;
|
11 | export declare const isNil: (val: any) => val is null;
|
12 | export declare const isEmpty: (array: any) => boolean;
|
13 | export declare const isSymbol: (val: any) => val is symbol;
|