mirror of
https://gitee.com/vant-contrib/vant.git
synced 2025-04-06 03:57:59 +08:00
35 lines
906 B
TypeScript
35 lines
906 B
TypeScript
export { addUnit } from './format/unit';
|
|
export { createNamespace } from './create';
|
|
|
|
// eslint-disable-next-line @typescript-eslint/no-empty-function
|
|
export function noop() {}
|
|
|
|
export const inBrowser = typeof window !== 'undefined'
|
|
|
|
export function isDef(val: unknown): boolean {
|
|
return val !== undefined && val !== null;
|
|
}
|
|
|
|
export function isFunction(val: unknown): val is Function {
|
|
return typeof val === 'function';
|
|
}
|
|
|
|
export function isObject(val: unknown): val is Record<any, any> {
|
|
return val !== null && typeof val === 'object';
|
|
}
|
|
|
|
export function isPromise<T = any>(val: unknown): val is Promise<T> {
|
|
return isObject(val) && isFunction(val.then) && isFunction(val.catch);
|
|
}
|
|
|
|
export function get(object: any, path: string): any {
|
|
const keys = path.split('.');
|
|
let result = object;
|
|
|
|
keys.forEach((key) => {
|
|
result = isDef(result[key]) ? result[key] : '';
|
|
});
|
|
|
|
return result;
|
|
}
|