1234567891011 |
- 'use strict';
-
- Object.defineProperty(exports, "__esModule", {
- value: true
- });
-
- /**
- * 575: 为了和media query中的判断保持一致
- */
- var isMobile = exports.isMobile = typeof window.orientation === 'number' && document.body.offsetWidth < 575;
- //# sourceMappingURL=utils.js.map
|