I have js files that I would like to share across multiple worker files. I find it pretty useful myself to avoid code duplication while coding the workers.
For example, I've got a hack function at the moment called createWorkerFromUrls([url1, url2, url3]) where it gets each file via httprequest and waits on a timer until they're all fetched. Then they're joined together and passed to workerPool.createWorker(jsString); Any possibility of a method like this down the track? Chris
