mirror of
https://gitee.com/bootx/dax-pay-ui.git
synced 2025-09-26 21:51:40 +00:00
82 lines
2.2 KiB
TypeScript
82 lines
2.2 KiB
TypeScript
const toString = Object.prototype.toString;
|
|
|
|
export function is(val: unknown, type: string) {
|
|
return toString.call(val) === `[object ${type}]`;
|
|
}
|
|
|
|
export const isDef = <T = unknown>(val?: T): val is T => {
|
|
return typeof val !== 'undefined';
|
|
};
|
|
|
|
export const isUnDef = <T = unknown>(val?: T): val is T => {
|
|
return !isDef(val);
|
|
};
|
|
|
|
export const isObject = (val: any): val is Record<any, any> => {
|
|
return val !== null && is(val, 'Object');
|
|
};
|
|
|
|
export function isDate(val: unknown): val is Date {
|
|
return is(val, 'Date');
|
|
}
|
|
|
|
export function isNull(val: unknown): val is null {
|
|
return val === null;
|
|
}
|
|
|
|
export function isNullAndUnDef(val: unknown): val is null | undefined {
|
|
return isUnDef(val) && isNull(val);
|
|
}
|
|
|
|
export function isNumber(val: unknown): val is number {
|
|
return is(val, 'Number');
|
|
}
|
|
|
|
export function isPromise<T = any>(val: unknown): val is Promise<T> {
|
|
return is(val, 'Promise') && isObject(val) && isFunction(val.then) && isFunction(val.catch);
|
|
}
|
|
|
|
export function isString(val: unknown): val is string {
|
|
return is(val, 'String');
|
|
}
|
|
|
|
export const isFunction = (val: unknown): val is Function => typeof val === 'function';
|
|
|
|
export function isBoolean(val: unknown): val is boolean {
|
|
return is(val, 'Boolean');
|
|
}
|
|
|
|
export function isRegExp(val: unknown): val is RegExp {
|
|
return is(val, 'RegExp');
|
|
}
|
|
|
|
export function isArray(val: unknown): val is Array<any> {
|
|
return val && Array.isArray(val);
|
|
}
|
|
|
|
export const isWindow = (val: any): val is Window => {
|
|
return typeof window !== 'undefined' && is(val, 'Window');
|
|
};
|
|
|
|
export const isElement = (val: unknown): val is Element => {
|
|
return isObject(val) && !!val.tagName;
|
|
};
|
|
|
|
export const isServer = typeof window === 'undefined';
|
|
|
|
export const isClient = typeof window !== 'undefined';
|
|
|
|
export function isImageDom(o: Element) {
|
|
return o && ['IMAGE', 'IMG'].includes(o.tagName);
|
|
}
|
|
|
|
export const isTextarea = (element: Element | null): element is HTMLTextAreaElement => {
|
|
return element !== null && element.tagName.toLowerCase() === 'textarea';
|
|
};
|
|
|
|
export const isMobile = (): boolean => {
|
|
return !!navigator.userAgent.match(
|
|
/(phone|pad|pod|iPhone|iPod|ios|iPad|Android|Mobile|BlackBerry|IEMobile|MQQBrowser|JUC|Fennec|wOSBrowser|BrowserNG|WebOS|Symbian|Windows Phone)/i
|
|
);
|
|
};
|