@visactor/vtable
Version:
canvas table width high performance
17 lines (16 loc) • 995 B
TypeScript
export declare const judgeType: (value: any) => "function" | "string" | "object" | "array" | "number" | "regExp" | "boolean" | "symbol" | "date" | "undefined" | "null" | "error" | "document" | "global";
export declare const isIt: (v: any, type: string) => boolean;
export declare const isObject: (v: any) => boolean;
export declare const isFunction: (v: any) => boolean;
export declare const isArray: (v: any) => boolean;
export declare const isString: (v: any) => boolean;
export declare const isNumber: (v: any) => boolean;
export declare const isRegExp: (v: any) => boolean;
export declare const isBoolean: (v: any) => boolean;
export declare const isSymbol: (v: any) => boolean;
export declare const isDate: (v: any) => boolean;
export declare const isUndefined: (v: any) => boolean;
export declare const isNull: (v: any) => boolean;
export declare const isError: (v: any) => boolean;
export declare const isDocument: (v: any) => boolean;
export declare const isGlobal: (v: any) => boolean;