Hi Sander,
Thanks for responding. Just realised I have not pushed commit to repository, so complete source code available now.
Ahhh, so web workers run in a separate process from the angular app, i.e. the scripts loaded in index.html of the angular app, including pollyfills, are not visible to web workers?
I have stored the web worker in a static folder so that it can be loaded from the Angular app, i.e. `let w : Worker = new Worker ('/webworkers/worker.js');`
So, does that mean that I would have to extract the scripts from node modules for formdata-polyfill and store them in the static webworkers folder. Subsequently, I then reference them from the web worker using importScripts if the browser is safari?
Regards
Simon