mirror of
https://github.com/nocodb/nocodb.git
synced 2026-05-03 20:46:41 +00:00
4 lines
211 B
TypeScript
4 lines
211 B
TypeScript
// refer - https://stackoverflow.com/a/11752084
|
|
export const isMac = () => /Mac/i.test(navigator.platform)
|
|
export const isDrawerOrModalExist = () => document.querySelector('.ant-modal.active, .ant-drawer-open')
|