I am using transferables to communicate between the main thread and the worker. I realized the communcation creates GC activity because after receiving the buffer, I'm converting the buffer to a typed array using the new keyword:
var ary = new Float32Array(buffer);
Is there a way to re-use a TypedArray or getting a view of a buffer without creating GC activity?