UNPKG

@zstings/utils

Version:

javascript、typescript 工具函数库 文档地址 [utils 文档](https://zstings.github.io/utils/)

16 lines (15 loc) 277 B
/** * 是否是dom * @param value dom * @return true | false * @category 浏览器Dom * @example * ```ts * isDom() // => false * ``` * @example * ```ts * isDom(document.querySelector('head')) // => true * ``` */ export default function isDom(value: any): boolean;