-
-
Notifications
You must be signed in to change notification settings - Fork 3.2k
/
Copy pathget-support.js
49 lines (41 loc) · 1.09 KB
/
get-support.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
import { getWindow, getDocument } from 'ssr-window';
let support;
function calcSupport() {
const window = getWindow();
const document = getDocument();
return {
touch: !!(
'ontouchstart' in window ||
(window.DocumentTouch && document instanceof window.DocumentTouch)
),
pointerEvents:
!!window.PointerEvent &&
'maxTouchPoints' in window.navigator &&
window.navigator.maxTouchPoints >= 0,
passiveListener: (function checkPassiveListener() {
let supportsPassive = false;
try {
const opts = Object.defineProperty({}, 'passive', {
// eslint-disable-next-line
get() {
supportsPassive = true;
},
});
window.addEventListener('testPassiveListener', null, opts);
} catch (e) {
// No support
}
return supportsPassive;
})(),
intersectionObserver: (function checkObserver() {
return 'IntersectionObserver' in window;
})(),
};
}
function getSupport() {
if (!support) {
support = calcSupport();
}
return support;
}
export { getSupport };