UNPKG

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