UNPKG

sodesu-comment

Version:

Comment system with SolidJS

11 lines (9 loc) 234 B
import { isString } from './type.js'; export const getRoot = ( el: string | HTMLElement | undefined, ): HTMLElement | null => el instanceof HTMLElement ? el : isString(el) ? document.querySelector(el) : null;