We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
On iOS Safari 12, audio processors can't extend AudioWorkletProcessor because it's not a class with a prototype object.
AudioWorkletProcessor
TypeError: The value of the superclass's prototype property is not an object.
This is the offending line https://github.com/GoogleChromeLabs/audioworklet-polyfill/blob/master/src/index.js#L86. which is (unsurprisingly) the line that evals the processor.
eval
The text was updated successfully, but these errors were encountered:
Make AudioWorkletProcessor a class (fixes GoogleChromeLabs#24)
b299970
No branches or pull requests
On iOS Safari 12, audio processors can't extend
AudioWorkletProcessor
because it's not a class with a prototype object.Error and stack trace
TypeError: The value of the superclass's prototype property is not an object.
This is the offending line https://github.com/GoogleChromeLabs/audioworklet-polyfill/blob/master/src/index.js#L86. which is (unsurprisingly) the line that
eval
s the processor.The text was updated successfully, but these errors were encountered: