three
Version:
JavaScript 3D library
26 lines (13 loc) • 296 B
JavaScript
let _context;
const AudioContext = {
getContext: function () {
if ( _context === undefined ) {
_context = new ( window.AudioContext || window.webkitAudioContext )();
}
return _context;
},
setContext: function ( value ) {
_context = value;
}
};
export { AudioContext };