UNPKG

@waline/client

Version:

client for waline comment system

9 lines (8 loc) 200 B
export const getRoot = ( el: string | HTMLElement | undefined ): HTMLElement | null => el instanceof HTMLElement ? el : typeof el === 'string' ? document.querySelector(el) : null;