I want to crush this Javascript code:
var ac = new AudioContext; //works fine without this line
var oscillator = ac.createOscillator();
var analyser = ac.createAnalyser();
var gain = ac.createGain();`
with this crusher:
http://siorki.github.io/regPack.html
It works fine for many codes but it won't crush the AudioContext variable. Without the first line it works fine.
The Javascript Console shows following error:
ReferenceError: varsNotReassigned is not defined
Can someone tell me what I'm doing wrong or recommend another crusher?