UNPKG

detect-features

Version:

Detect and report browser and hardware features.

15 lines (13 loc) 197 B
// @ts-check /** * Tests for SessionStorage support * * @returns {boolean} */ export default (() => { try { return !!window.sessionStorage; } catch (err) { return false; } })();