mirror of
				https://github.com/RGBCube/serenity
				synced 2025-10-31 22:32:44 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			10 lines
		
	
	
	
		
			263 B
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
			
		
		
	
	
			10 lines
		
	
	
	
		
			263 B
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
| onmessage = evt => {
 | |
|     console.log("In Worker - Got message:", JSON.stringify(evt.data));
 | |
| 
 | |
|     postMessage(JSON.stringify(evt.data));
 | |
| };
 | |
| 
 | |
| console.log("In Worker - Loaded", this);
 | |
| console.log("Keys: ", JSON.stringify(Object.keys(this)));
 | |
| 
 | |
| postMessage("loaded");
 | 
