DocSpace-client/packages/shared/utils/objectUtils.ts

7 lines
229 B
TypeScript
Raw Normal View History

export default class ObjectUtils {
2023-11-24 07:43:45 +00:00
static getJSXElement(obj: unknown, ...params: unknown[]) {
// @ts-expect-error Don`t understand this line and class generally
return this.isFunction(obj) ? obj(...params) : obj;
}
}