UNPKG

@animech-public/playcanvas

Version:
12 lines (10 loc) 315 B
/** * Reports whether this device supports the Web Audio API. * * @returns {boolean} True if Web Audio is supported and false otherwise. * @ignore */ function hasAudioContext() { return !!(typeof AudioContext !== 'undefined' || typeof webkitAudioContext !== 'undefined'); } export { hasAudioContext };