UNPKG

vtils

Version:

一个面向业务的 JavaScript/TypeScript 实用程序库。

19 lines (18 loc) 375 B
var yes; /** * 检查是否在浏览器环境中。 * * @returns 返回检查结果 * @example * ```typescript * if (inBrowser()) { * console.log('你在浏览器中') * } * ``` */ export function inBrowser() { if (yes == null) { yes = typeof window === 'object' && typeof window.document === 'object' && window.document.nodeType === 9; } return yes; }