mirror of
https://github.com/XiaoDaiGua-Ray/ray-template.git
synced 2025-04-05 19:42:07 +08:00
16 lines
302 B
TypeScript
16 lines
302 B
TypeScript
/**
|
||
*
|
||
* @description
|
||
* 获取当前环境是否为浏览器环境。
|
||
*
|
||
* 如果是浏览器环境,则返回 true,否则返回 false。
|
||
*/
|
||
const isBrowser = () =>
|
||
!!(
|
||
typeof window !== 'undefined' &&
|
||
window.document &&
|
||
window.document.createElement
|
||
)
|
||
|
||
export default isBrowser
|