UNPKG

detect-features

Version:

Detect and report browser and hardware features.

16 lines (14 loc) 217 B
// @ts-check /** * Tests for Image decode support * * @returns {boolean} */ export default (() => { try { const image = new Image(); return !!image.decode; } catch (err) { return false; } })();