UNPKG

@zstings/utils

Version:

javascript、typescript 工具函数库 文档地址 [utils 文档](https://zstings.github.io/utils/)

17 lines (16 loc) 282 B
/** * 是否是windows环境 * @return true | false * @category 设备Device * @example * windows环境中端访问 * ```ts * isWin() // => true * ``` * @example * 非windows环境访问 * ```ts * isWin() // => false * ``` */ export default function isWin(): boolean;