mirror of
https://gitee.com/vant-contrib/vant.git
synced 2025-04-06 03:57:59 +08:00
38 lines
882 B
TypeScript
38 lines
882 B
TypeScript
import { PropType, ComponentPublicInstance } from 'vue';
|
|
|
|
export function noop() {}
|
|
|
|
export const inBrowser = typeof window !== 'undefined';
|
|
|
|
// unknown type for Vue prop
|
|
export const UnknownProp = (null as unknown) as PropType<unknown>;
|
|
|
|
// eslint-disable-next-line
|
|
export type ComponentInstance = ComponentPublicInstance<{}, any>;
|
|
|
|
export function get(object: any, path: string): any {
|
|
const keys = path.split('.');
|
|
let result = object;
|
|
|
|
keys.forEach((key) => {
|
|
result = result[key] ?? '';
|
|
});
|
|
|
|
return result;
|
|
}
|
|
|
|
export type Writeable<T> = { -readonly [P in keyof T]: T[P] };
|
|
|
|
export function pick<T, U extends keyof T>(
|
|
obj: T,
|
|
keys: ReadonlyArray<U>,
|
|
ignoreUndefined?: boolean
|
|
) {
|
|
return keys.reduce((ret, key) => {
|
|
if (!ignoreUndefined || obj[key] !== undefined) {
|
|
ret[key] = obj[key];
|
|
}
|
|
return ret;
|
|
}, {} as Writeable<Pick<T, U>>);
|
|
}
|