UNPKG

detect-features

Version:

Detect and report browser and hardware features.

9 lines (7 loc) 168 B
// @ts-check /** * Tests for performance.now support * * @returns {boolean} */ export default (() => !!(window.performance && window.performance.now) || false)();