UNPKG

vtils

Version:

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

23 lines (21 loc) 441 B
"use strict"; exports.__esModule = true; exports.inBrowser = inBrowser; var yes; /** * 检查是否在浏览器环境中。 * * @returns 返回检查结果 * @example * ```typescript * if (inBrowser()) { * console.log('你在浏览器中') * } * ``` */ function inBrowser() { if (yes == null) { yes = typeof window === 'object' && typeof window.document === 'object' && window.document.nodeType === 9; } return yes; }