Skip to content

Instantly share code, notes, and snippets.

@quimbs
Last active December 8, 2020 14:04
Show Gist options
  • Save quimbs/564c57dba361d41edcd0 to your computer and use it in GitHub Desktop.
Save quimbs/564c57dba361d41edcd0 to your computer and use it in GitHub Desktop.
Check if AudioContext is supported and instance it
var isAudioContextSupported = function () {
// This feature is still prefixed in Safari
window.AudioContext = window.AudioContext || window.webkitAudioContext;
if(window.AudioContext){
return true;
}
else {
return false;
}
};
var audioContext;
if(isAudioContextSupported()) {
audioContext = new window.AudioContext();
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment