UNPKG

element-plus

Version:

A Component Library for Vue 3

1 lines 826 B
{"version":3,"file":"element.mjs","names":[],"sources":["../../../../../packages/utils/dom/element.ts"],"sourcesContent":["import { isString } from '../types'\nimport { isClient } from '../browser'\n\ntype GetElement = <T extends string | HTMLElement | Window | null | undefined>(\n target: T\n) => T extends string ? HTMLElement | null : T\n\nexport const getElement = ((\n target: string | HTMLElement | Window | null | undefined\n) => {\n if (!isClient || target === '') return null\n if (isString(target)) {\n try {\n return document.querySelector<HTMLElement>(target)\n } catch {\n return null\n }\n }\n return target\n}) as GetElement\n"],"mappings":";;;AAOA,MAAa,eACX,WACG;CACH,IAAI,CAAC,YAAY,WAAW,IAAI,OAAO;CACvC,IAAI,SAAS,OAAO,EAClB,IAAI;EACF,OAAO,SAAS,cAA2B,OAAO;SAC5C;EACN,OAAO;;CAGX,OAAO"}