mirror of https://github.com/nocodb/nocodb
4 lines
289 B
4 lines
289 B
// 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')
|
|
|