I am using this Web worker which has a Global variable declared in it. Can I access the same (Global variable in worker 1) in the newly spawned web worker(worker 2)?
Based on @buley tip, I did it:
var window = self; importScripts(/* dependencies here */); /* my code */
In my case I was trying to use the ES6-Promise lib: https://github.com/jakearchibald/es6-promise#readme