type TFactoryProps = Partial<{ factory: Partial<{ html: string; }>; }>; /** * Получает флаг необходимости обернуть пользовательскую разметку модуля в Factory * @param props{Object=} * @returns {boolean} */ const isNeedFactory = (props: T): boolean => { const { html = "" } = props?.factory ?? {}; return typeof html === "string" && !!html.length; }; export { isNeedFactory, };