Vous ne pouvez pas sélectionner plus de 25 sujets
Les noms de sujets doivent commencer par une lettre ou un nombre, peuvent contenir des tirets ('-') et peuvent comporter jusqu'à 35 caractères.
1234567891011121314 |
- /**
- * Adapter that creates AudioContext objects depending on the browser.
- *
- * @returns {AudioContext} - Return a new AudioContext or undefined if the browser does not support it.
- */
- export function createAudioContext(options) {
- const AudioContextImpl = window.AudioContext || window.webkitAudioContext;
-
- if (!AudioContextImpl) {
- return undefined;
- }
-
- return new AudioContextImpl(options);
- }
|