1
0
mirror of https://github.com/vercel/commerce.git synced 2025-08-09 18:31:23 +00:00
Files
assets
components
config
docs
framework
lib
click-outside
click-outside.tsx
has-parent.js
index.ts
is-in-dom.js
hooks
colors.ts
defaults.ts
get-slug.ts
logger.ts
range-map.ts
search.tsx
to-pixels.ts
usage-warns.ts
pages
public
.editorconfig
.env.template
.gitignore
.prettierignore
README.md
codegen.json
global.d.ts
license.md
next-env.d.ts
next.config.js
package.json
postcss.config.js
tailwind.config.js
tsconfig.json
yarn.lock
commerce/lib/click-outside/is-in-dom.js
2020-12-02 13:16:30 -03:00

4 lines
79 B
JavaScript

export default function isInDom(obj) {
return Boolean(obj.closest('body'))
}