Open hgcummings opened 4 years ago
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
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.