UNPKG

detect-features

Version:

Detect and report browser and hardware features.

10 lines (7 loc) 169 B
export default (() => { const doNotTrack = navigator.doNotTrack || false; if (!!doNotTrack || doNotTrack === 'unspecified') { return false; } return true; })();