UNPKG

project-libs

Version:

project-libs 是一个常用函数集锦的工具库,包括浏览器、函数式、常用验证、cookie、数组处理等函数。

11 lines (10 loc) 315 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.default = isMobile; /** * 判断是否为手机端 * @returns {boolean} boolean */ function isMobile() { return /iphone|ipod|android.*mobile|windows.*phone|blackberry.*mobile/i.test(navigator.userAgent.toLowerCase()); }