UNPKG

detect-features

Version:

Detect and report browser and hardware features.

9 lines (7 loc) 165 B
// @ts-check /** * Tests for WebAudio support * * @returns {boolean} */ export default (() => !!window.AudioContext || !!window.webkitAudioContext || false)();