vtils

Home > utils > inBrowser

inBrowser() function

检查是否在浏览器环境中。

Signature:

export declare function inBrowser(): boolean;

Returns:

boolean

返回检查结果

Example

if (inBrowser()) {
  console.log('你在浏览器中')
}