Du kannst nicht mehr als 25 Themen auswählen
Themen müssen mit entweder einem Buchstaben oder einer Ziffer beginnen. Sie können Bindestriche („-“) enthalten und bis zu 35 Zeichen lang sein.
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);
- }
|