ray-template/__test__/utils/isBrowser.ts
2024-03-29 16:25:09 +08:00

16 lines
302 B
TypeScript
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

/**
*
* @description
* 获取当前环境是否为浏览器环境。
*
* 如果是浏览器环境,则返回 true否则返回 false。
*/
const isBrowser = () =>
!!(
typeof window !== 'undefined' &&
window.document &&
window.document.createElement
)
export default isBrowser