@@ -87391,19 +87391,19 @@ module.exports = $gOPD;
87391
87391
/***/ (function(module, __unused_webpack_exports, __webpack_require__) {
87392
87392
87393
87393
"use strict";
87394
-
87395
-
87396
- var isBrowser = __webpack_require__(24200)
87397
- var hasHover
87398
-
87399
- if (typeof __webpack_require__.g.matchMedia === 'function') {
87400
- hasHover = !__webpack_require__.g.matchMedia('(hover: none)').matches
87401
- }
87402
- else {
87403
- hasHover = isBrowser
87404
- }
87405
-
87406
- module.exports = hasHover
87394
+
87395
+
87396
+ var isBrowser = __webpack_require__(24200)
87397
+ var hasHover
87398
+
87399
+ if (typeof __webpack_require__.g.matchMedia === 'function') {
87400
+ hasHover = !__webpack_require__.g.matchMedia('(hover: none)').matches
87401
+ }
87402
+ else {
87403
+ hasHover = isBrowser
87404
+ }
87405
+
87406
+ module.exports = hasHover
87407
87407
87408
87408
87409
87409
/***/ }),
@@ -87412,30 +87412,30 @@ module.exports = hasHover
87412
87412
/***/ (function(module, __unused_webpack_exports, __webpack_require__) {
87413
87413
87414
87414
"use strict";
87415
-
87416
-
87417
- var isBrowser = __webpack_require__(24200)
87418
-
87419
- function detect() {
87420
- var supported = false
87421
-
87422
- try {
87423
- var opts = Object.defineProperty({}, 'passive', {
87424
- get: function() {
87425
- supported = true
87426
- }
87427
- })
87428
-
87429
- window.addEventListener('test', null, opts)
87430
- window.removeEventListener('test', null, opts)
87431
- } catch(e) {
87432
- supported = false
87433
- }
87434
-
87435
- return supported
87436
- }
87437
-
87438
- module.exports = isBrowser && detect()
87415
+
87416
+
87417
+ var isBrowser = __webpack_require__(24200)
87418
+
87419
+ function detect() {
87420
+ var supported = false
87421
+
87422
+ try {
87423
+ var opts = Object.defineProperty({}, 'passive', {
87424
+ get: function() {
87425
+ supported = true
87426
+ }
87427
+ })
87428
+
87429
+ window.addEventListener('test', null, opts)
87430
+ window.removeEventListener('test', null, opts)
87431
+ } catch(e) {
87432
+ supported = false
87433
+ }
87434
+
87435
+ return supported
87436
+ }
87437
+
87438
+ module.exports = isBrowser && detect()
87439
87439
87440
87440
87441
87441
/***/ }),
@@ -88021,41 +88021,41 @@ module.exports = function shimNumberIsNaN() {
88021
88021
/***/ (function(module) {
88022
88022
88023
88023
"use strict";
88024
-
88025
-
88026
- /**
88027
- * Is this string all whitespace?
88028
- * This solution kind of makes my brain hurt, but it's significantly faster
88029
- * than !str.trim() or any other solution I could find.
88030
- *
88031
- * whitespace codes from: http://en.wikipedia.org/wiki/Whitespace_character
88032
- * and verified with:
88033
- *
88034
- * for(var i = 0; i < 65536; i++) {
88035
- * var s = String.fromCharCode(i);
88036
- * if(+s===0 && !s.trim()) console.log(i, s);
88037
- * }
88038
- *
88039
- * which counts a couple of these as *not* whitespace, but finds nothing else
88040
- * that *is* whitespace. Note that charCodeAt stops at 16 bits, but it appears
88041
- * that there are no whitespace characters above this, and code points above
88042
- * this do not map onto white space characters.
88043
- */
88044
-
88045
- module.exports = function(str){
88046
- var l = str.length,
88047
- a;
88048
- for(var i = 0; i < l; i++) {
88049
- a = str.charCodeAt(i);
88050
- if((a < 9 || a > 13) && (a !== 32) && (a !== 133) && (a !== 160) &&
88051
- (a !== 5760) && (a !== 6158) && (a < 8192 || a > 8205) &&
88052
- (a !== 8232) && (a !== 8233) && (a !== 8239) && (a !== 8287) &&
88053
- (a !== 8288) && (a !== 12288) && (a !== 65279)) {
88054
- return false;
88055
- }
88056
- }
88057
- return true;
88058
- }
88024
+
88025
+
88026
+ /**
88027
+ * Is this string all whitespace?
88028
+ * This solution kind of makes my brain hurt, but it's significantly faster
88029
+ * than !str.trim() or any other solution I could find.
88030
+ *
88031
+ * whitespace codes from: http://en.wikipedia.org/wiki/Whitespace_character
88032
+ * and verified with:
88033
+ *
88034
+ * for(var i = 0; i < 65536; i++) {
88035
+ * var s = String.fromCharCode(i);
88036
+ * if(+s===0 && !s.trim()) console.log(i, s);
88037
+ * }
88038
+ *
88039
+ * which counts a couple of these as *not* whitespace, but finds nothing else
88040
+ * that *is* whitespace. Note that charCodeAt stops at 16 bits, but it appears
88041
+ * that there are no whitespace characters above this, and code points above
88042
+ * this do not map onto white space characters.
88043
+ */
88044
+
88045
+ module.exports = function(str){
88046
+ var l = str.length,
88047
+ a;
88048
+ for(var i = 0; i < l; i++) {
88049
+ a = str.charCodeAt(i);
88050
+ if((a < 9 || a > 13) && (a !== 32) && (a !== 133) && (a !== 160) &&
88051
+ (a !== 5760) && (a !== 6158) && (a < 8192 || a > 8205) &&
88052
+ (a !== 8232) && (a !== 8233) && (a !== 8239) && (a !== 8287) &&
88053
+ (a !== 8288) && (a !== 12288) && (a !== 65279)) {
88054
+ return false;
88055
+ }
88056
+ }
88057
+ return true;
88058
+ }
88059
88059
88060
88060
88061
88061
/***/ }),
0 commit comments