UNPKG

detect-features

Version:

Detect and report browser and hardware features.

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