mirror of
https://github.com/XiaoDaiGua-Ray/ray-template.git
synced 2025-04-05 07:03:00 +08:00
16 lines
296 B
TypeScript
16 lines
296 B
TypeScript
/**
|
||
*
|
||
* @description
|
||
* 判断是否可以操作 DOM。
|
||
*
|
||
* 如果可以操作 DOM,则返回 true,否则返回 false。
|
||
*/
|
||
const canUseDom = () => {
|
||
return !!(
|
||
typeof window !== 'undefined' &&
|
||
window.document &&
|
||
window.document.createElement
|
||
)
|
||
}
|
||
export default canUseDom
|