mirror of
https://github.com/nocodb/nocodb.git
synced 2026-04-30 18:36:59 +00:00
5 lines
289 B
TypeScript
5 lines
289 B
TypeScript
// refer - https://stackoverflow.com/a/11752084
|
|
export const isMac = () => /Mac/i.test(navigator.platform)
|
|
export const isDrawerExist = () => document.querySelector('.ant-drawer-open')
|
|
export const isDrawerOrModalExist = () => document.querySelector('.ant-modal.active, .ant-drawer-open')
|