UNPKG

detect-features

Version:

Detect and report browser and hardware features.

10 lines (8 loc) 225 B
// @ts-check /** * Checks if the user has cookies enabled * This is useful for adhering to user wishes regarding analytics tracking * * @returns {boolean} */ export default (() => !!navigator.cookieEnabled || false)();